$.get()方法还有最后一个参数规定返回的数据类型是json格式,如果没有这个,data.name没办法取值会变成undefined
2017-03-23
$(function(){
$(" #bntShow").bind("click",function(){
var $this=$(this);
$this.attr("disable","true");
$.get("url",function(data){
$("ul").append("<li>我的名字" +data.name +"</li>";
$("ul").append("<li>我男友对我说" +data.say+"</li>";},"json")
})
})
$(" #bntShow").bind("click",function(){
var $this=$(this);
$this.attr("disable","true");
$.get("url",function(data){
$("ul").append("<li>我的名字" +data.name +"</li>";
$("ul").append("<li>我男友对我说" +data.say+"</li>";},"json")
})
})
2017-03-22
最赞回答 / qq_BlackDatura_0
.result(SearchCallback),SearchCallback()方法在用户选中某一项后触发,其中各参数:event: 事件对象. data: 选中的数据行.formatted:formatResult函数返回的值
2017-03-20