請讓我知道這段代碼有什麼問題。它沒有顯示警報。jquery的ready函數
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("button").click(function() {
alert("hi");
});
});
</script>
<form id="theform">
<input type="text" name="dt" id="id" value="" />
<input type="button" name="submit" value="submit" />
</form>
There is _is_ a'
我的意思是他的標記中沒有按鈕類型的標記。 – HungryCoder