不报错但是执行没有结果
<body>
<div id="divtest">
<div class="title">
<span class="fl">我的个人资料</span>
<span class="fr">
<input id="btnShow" type="button" value="加载" />
</span>
</div>
<ul></ul>
</div>
<script type="text/javascript">
$(function () {
$("#btnShow").bind("click", function () {//bind() 方法为被选元素添加一个或多个事件处理程序,并规定事件发生时运行的函数。
var $this = $(this);
$.get("php/postphp.php",function(data) {
$this.attr("disabled", "true");
$("ul").append("<li>我的名字叫:" + data.name + "</li>");
$("ul").append("<li>男朋友对我说:" + data.say + "</li>");
}, "json");
})
});
</script>
</body>
<?php
echo json_encode( array("name"=>"白富美","say"=>"我们结婚吧!"));
?>