我嘗試使用Ajax調用服務器,當我單擊表單內的按鈕時。但即使使用event.PreventDefault或返回false,它也不會使用Ajax。使用按鈕的Ajax調用單擊表單不起作用
可能是什麼問題。這是我的HTML和jQuery代碼
<form action="/Patient/Search" id="patient-search-form" method="post">
<input type="text" id="PatientName" />
<button class="btn blue-button" id="search-patients" type="submit">
<i class="icon-save icon-white"></i><span>Search</span>
</button>
</form>
<script type="text/javascript">
$(document).ready(function() {
$('#search-patients').submit(function (event) {
event.preventDefault();
SearchPatients();
return false;
});
});
</script>
你確定在SearchPatients()函數中沒有問題? – 2013-03-18 11:41:01