$("#submitbutton").button().click(function() {
$.ajax({
type: 'POST',
url: 'tst/mmm.php',
data: { abc: "abcdefghijklmnopqrstuvwxyz" },
success: function(msg){
alert(msg);
}
});
});
# cat tst/mmm.php
<?php echo json_encode(array("first"=>"YyXy","last"=>"yyyyXXX")); ?>
为什么我看不到告诉我first=YyXy&last=yyyyXXX的警报。如果这意味着什么,则可以从远程访问 mmm.php。他们都在apache上。我应该在哪里寻找这篇文章的回复?对不起,这个主题的蹩脚问题,我是新手。谢谢!!
编辑1:html代码:
<body>
<div id=container>
<div id="first">
<form id='form1'>
<button id="submitbutton" type="submit">Submit</button></br></br>
</form>
</div>
编辑 2:我是否需要特殊的用户:组权限才能将 html 发布到 php?我应该使用一些特殊设置来允许在 apache 配置 (httpd.conf) 中访问 mmm.php 吗?