提交後,我希望提交按鈕通過jQuery隱藏。它隱藏起來,但不久後頁面重新加載...爲什麼?提交後隱藏提交按鈕?
HTML:
<!DOCTYPE html>
<html>
<head>
<script src="js/submit_rsvp.js"></script>
<script src="js/jquery-1.2.3.pack.js"></script>
<script src="http://code.jquery.com/jquery-git.js"></script>
</head>
<body>
<form name="rsvp" method="post" action="" id='form'>
<input type='submit' name='submit' value='submit' id='submit' class='clickMe'>
</form>
</body>
</html>
JS:
$(document).ready(function() {
$(".clickMe").click(function() {
$("submit").hide();
});
});
謝謝! Coulton
而不是..什麼想要的行爲? – 2011-04-27 21:55:50