[問題] jquery提問

作者: painterfun (平安是福)   2013-12-18 19:54:26
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
.help {display: none}
#menu {display: none}
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$("form").submit(function() {
if ($("input#username").val() == "")
$("span.help").show();
return false;
});
</script>
</head>
<body>
<form method="post">
<label for="username">請輸入大名</label>
<input type="text" id="username" name="username" />
<span class="help">這個欄位必填喔</span>
<input type="submit"/>
</form>
</body>
</html>
網路上找的資料驗證範例
但沒有預期的效果
請板上高手指點一下
另外請教瀏覽器要怎麼debug呢
作者: duck10704 (duck)   2013-02-18 22:48:00
你的預期效果是help那邊原本是要隱藏的吧?
作者: mmis1000 (秋月戀楓)   2013-02-18 22:50:00
css缺了分號下次遇到問題先用瀏覽器的開發者工具,還是不行在發問吧
作者: painterfun (平安是福)   2013-02-19 00:49:00
謝謝各位結果問題是出在if要用{}包起條件式 還有jquery執行時form沒辦法被抓到 把script移到最下方就好了或許ready事件也可以解決(?再次感謝各位的相助

Links booklink

Contact Us: admin [ a t ] ucptt.com