http://www.jb51.net/article/24219.htm
jquery.autocomplete详解
语法:
autocomplete(urlor data, [options] )
参数:
url or data:数组或者url
[options]:可选项,选项解释如下:
1) minChars (Number)
在触发autoComplete前用户至少需要输入的字符数,Default:1,如果设为0,在输入框内双击或者删除输入框内内容时显示列表。
jquery.autocomplete详解
语法:
autocomplete(urlor data, [options] )
参数:
url or data:数组或者url
[options]:可选项,选项解释如下:
1) minChars (Number)
在触发autoComplete前用户至少需要输入的字符数,Default:1,如果设为0,在输入框内双击或者删除输入框内内容时显示列表。
2017-04-08
$(function(){
var students = [{"name":"张三","sex":"男"},{"name":"李四","sex":"女"}];
$.each(students,function(index,student){
$("#list").append("<li>姓名:"+student.name + "性别:"+student.sex + "</li>");
});
});
var students = [{"name":"张三","sex":"男"},{"name":"李四","sex":"女"}];
$.each(students,function(index,student){
$("#list").append("<li>姓名:"+student.name + "性别:"+student.sex + "</li>");
});
});
注意是$("txtNumber")不是$("textNumber")
2017-04-06
path: "/", expires: 7是什么意识啊啊啊啊 path: "/", expires: 7是什么意识啊啊啊啊 path: "/", expires: 7是什么意识啊啊啊啊 path: "/", expires: 7是什么意识啊啊啊啊
2017-04-04
该函数是简写的 Ajax 函数,等价于:
$.ajax({
url: url,
dataType: "script",
success: success
});
(来自W3School)
$.ajax({
url: url,
dataType: "script",
success: success
});
(来自W3School)
2017-04-04
自 jQuery 版本 1.7 起,on() 方法是向被选元素添加事件处理程序的首选方法。 (截自RUNOOB)
2017-04-04