嗨朋友們可以任何人爲我這個PLZ。即時通訊新的這一章..我試圖從PHP獲取JSON格式的值,但即時通訊運行時,我得到了這個輸出「SyntaxError:JSON.parse:unexpected characte」..我想我已經做了錯誤的PHP轉換... PLZ幫助我的朋友從jQuery使用jQuery獲取JSON值ajax
我的.html文件
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<title>Display Page</title>
</head>
<body>
<button type='button' id='getdata'>GetData.</button>
<button type='button' id='get'>sample</button>
<script type='text/javascript'>
$('#get').click(function() {
alert("laksjdflk");
});
$(document).ready(function() {
$('#getdata').click(function() {
$.ajax({
url:'neww.php' ,
dataType:'json' ,
success:function(output_string) {
alert(output_string);
},
error:function(xhr,ajaxOptions,thrownError){
alert(xhr.statusText);
alert(thrownError);
}
});
});
});
</script>
</body>
</html>
generatephp.php
<?php
mysql_connect("localhost","root","");
mysql_select_db("androidlogin");
$sql=mysql_query("SELECT* FROM trysave");
$temp="";
$i=0;
while($row=mysql_fetch_assoc($sql)){
$temp=$row['stringss'];
$temp.=$row['integerr'];
$array[i]=$temp;
i++;
}
echo json_encode($array);// this will print the output in json
?>
請參閱以下鏈接[jQuery的Ajax的獲得在-JSON的價值 - 從 - PHP] [1] [1]:HTTP:/ /stackoverflow.com/questions/19029703/jquery-using-ajax-to-send-data-and-save-in-php/19029778#19029778 –