|
|
|
สอบถามการอ่านค่าจากไฟล์ json ครับ โดยใช้ php และ java script |
|
|
|
|
|
|
|
php ใช้ json_encode, json_encode
js ผมใช้ jQuery เหมือนกัน
|
|
|
|
|
Date :
2012-02-10 18:19:14 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
<?php
$str = '{ "name":"Weerachai Nukitram", "email":"[email protected]"} ';
?>
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<script type="text/javascript">
$(document).ready(function(){
var obj = jQuery.parseJSON('<?=$str;?>');
$.each(obj, function(key, val) {
$("#div1").append(key +' = '+ val +'<br />');
});
});
</script>
<body>
<span id="div1"></span>
</body>
</html>
Go to : jQuery Ajax กับ JSON ทำความเข้าใจ การรับส่งข้อมูล JSON ผ่าน jQuery กับ Ajax
|
|
|
|
|
Date :
2012-05-25 22:00:18 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|