请问这种参数如何用PHP获得?
<script>
var url = '/Research';
var objParm = new Object();
objParm.kwd = $('#hdkwd').val();
objParm.sub = $('#hdsub2').val();
objParm.beg = $('#hdbeg').val();
objParm.past = $('#hdpast').val();
objParm.man = $('#hdman').val();
...
$.post(url, objParm, function(result) {
$('#dvwait').hide();
....
});
</script>
以上是 ajax 的提交js脚本, 我的疑问是 objParm.kwd 这些 参数应该如何在 php 页面里获得?
------解决方案--------------------
真不知道你是如何做的,难道 jq 会犯这种低级错误?
JScript code
<script src=scripts/jquery-1.7.js></script>
<script>
var url = 'http://localhost/server.php';
var objParm = new Object();
objParm.id = 1;
$.post(url, objParm, function(result) {
alert(result);
})
</script>