// 参考
http://blog.csdn.net/rambo_china/article/details/7742321
(function ($) {})(JQuery);
相当于
var fn = function($){....};
fn(jQuery);
// 参考
http://www.w3school.com.cn/jquery/event_load.asp
$("img").load(function(){
$("div").text("Image loaded");
});
当图像加载时,改变 div 元素的文本:
// 参考
http://www.365mini.com/page/jquery-attr.htm
如果attr()函数执行的是"设置属性"操作,则返回当前jQuery对象本身;如果是"读取属性"操作,则返回读取到的属性值。
// jQuery 数据 - jQuery.data() 方法
$("#btn1").click(function(){
$("div").data("greeting", "Hello World");
});
$("#btn2").click(function(){
alert($("div").data("greeting"));
});
remove() 方法移除被选元素,包括所有文本和子节点。
网友评论