我是 jquery 的新手,并试图从 php 学院修改一个基本脚本。
jquery 脚本是:
<script type="text/javascript">
function get() {
$.post('getpeopleinjobs.php', {
postvarfname: form.firstname.value,
postvarlname: form.d = surname.value
}, function(output) {
$('#age').html(output).show();
});
}
</script>
我的表单代码是:
<form name="form">
<input type="text" id="firstname">
<input type="text" id="surname">
<input type="button" value="get" onclick="get();">
</form>
当我只传递一个变量并且我的代码片段是:
$.post('getpeopleinjobs.php', {
postvarfname: form.firstname.value
}
然后我尝试添加第二个变量
$.post('getpeopleinjobs.php', {
postvarfname: form.firstname.value,
postvarlname: form.d = surname.value
}
它现在在 Internet Explorer 中不起作用,但有趣的是它在 Chrome 中起作用?
对初学者有什么建议吗?=