為什么沒有顯示
<div class="divtest">
? ?<div class="title">
? ? ? ?<span class="fl">我的個(gè)人資料</span>
? ? ? ?<span class="fr">
? ? ? ? ? ?<input id="btnShow3" type="button" value="加載" />
? ? ? ?</span>
? ?</div>
? ?<ul class="ul2"></ul>
</div>
<script type="text/javascript">
? ?$(function () {
? ? ? ?$("#btnShow3").bind("click", function (data) {
? ? ? ? ? ?var $this = $(this);
? ? ? ? ? ?$.get("http://idcbgp.cn/data/info_f.php", function(data) {
? ? ? ? ? ? ? ?$this.attr("disabled", "true");
? ? ? ? ? ? ? ?$(".ul2").append("<li>我的名字叫:" + data.name + "</li>");
? ? ? ? ? ? ? ?$(".ul2").append("<li>男朋友對(duì)我說:" + data.say + "</li>");
? ? ? ? ? ?}, "json");
? ? ? ?})
? ?});
</script>
2017-05-10
少了;
2018-07-27
http://idcbgp.cn/data/info_f.php 改成https
2017-07-17
代碼沒問題的