$("#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に投稿するには、特別なuser:group権限が必要ですか?Apache構成(httpd.conf)でmmm.phpへのアクセスを許可するために、いくつかの特別な設定を使用する必要がありますか?