我正在運行一些jQuery/JavaScript事件/方法,並且它們只能在整個文檔重新獲得它以前的內容之後才工作。怎麼來的?jQuery方法不是永久的?
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//jquery
$("#f").submit(function(){
$("h3").toggle();
//alert("hello");
});
$("button").click(function(){
alert("ZZZZZ");
});
});
</script>
<title>Catalog Nova Grup</title>
</head>
<body>
<center>
<h3 style="color:#00F">Catalog Nova Grup</h3>
</center>
<form id="f">
<select id="s1">
<option>---</option>
<option>ZZZ</option>
</select>
<select id="s2"></select>
<select id="s3"></select>
<input type="submit" id="sb" />
</form>
<button>ZZZ</button>
</body>
</html>
請發佈一些html和js代碼。 – 2012-03-01 10:30:55