在一個html網頁中,我想要PHP響應顯示<span>..</span>
。 任何人都可以告訴我該怎麼做,或者其他代碼有什麼問題? 感謝~~ ^^ 網頁代碼:如何通過使用ajax獲得php響應
<html>
<head>
<script type="text/javascript">
$("#submit").click(function(){
$.ajax({
type: 'get',
url: 'php/test.php',
dataType:'json',
success: function(data) {
//dosomething.....
},
});
});
</script>
</head>
<body>
<form method="post">
<input id="submit" type="button" value="next">
</form>
<br><br><span id ="status"></span>
</body>
</html>
PHP代碼:
<?php
echo ("success");
?>
請編輯您的問題與兩個文件,您要求的PHP頁面的文件和您將發送迴應的文件。 – Perry 2014-10-03 09:16:17
您希望json可以打印文本。將dataType更改爲文本或在php中使用json_encode – Robert 2014-10-03 09:55:56