1
我嘗試過不同的方法,但沒有成功。谷歌搜索,但無法找到此代碼工作。使用鏈接提交表單提交。需要幫助
我想通過單擊鏈接提交表單。以下是代碼。鏈接點擊被調用,但提交功能繞過。
<a id="Save" class="pageAddLink" href="#" title="Save Page Contents">Save Page</a>
<form action="/Home/Edit" id="first" method="post">
</form>
$(document).ready(function() {
$("a.pageAddLink").live('click', function (ev) {
ev.preventDefault();
//$("form#first").submit(); //Only this is working fine but below code not
$("form#first").submit(function (e) {
e.preventDefault();
alert("form submit called");
});
});
});