我想使用 ajax 从字段中发送所有值,而没有字段“lastname”中的值 - 我该怎么做?我的代码:
<script>
$(document).ready(function () {
$('#other').click(function () {
$.post("/Home/About", $("#target").serialize());
});
});
</script>
<form id="target" action="/Home/About" method="post">
First name:
<input type="text" name="firstname" id="firstname"><br>
.....other fields.....
Last name:
<input type="text" name="lastname" id="lastname"><br>
</form>
<div id="other">Submit</div>