jQuery select() 方法
实例 Run this code » 当文本域中的文本被选择时,显示提示消息: $("input").select(function(){ alert("文本已选中!"); }); 定义和用法 当 textarea 或文本类型的 in...
实例 Run this code » 当文本域中的文本被选择时,显示提示消息: $("input").select(function(){ alert("文本已选中!"); }); 定义和用法 当 textarea 或文本类型的 in...
实例 Run this code » 对元素滚动的次数进行计数: $("div").scroll(function(){ $("span").text(x+=1); }); 定义和用法 当用户滚动指定的元素时,会发生 scroll 事件。 ...
实例 Run this code » 对浏览器窗口调整大小进行计数: $(window).resize(function(){ $('span').text(x+=1); }); 定义和用法 当调整浏览器窗口大小时,发生 resize 事件...
实例 Run this code » 使用 ready() 来使函数在文档加载后是可用的: $(document).ready(function(){ $("button").click(function(){ $("p").slideTo...
实例 Run this code » 强制执行 objPerson 内的 "test" 函数的上下文: $("button").click($.proxy(objPerson,"test")); 定义和用法 $.proxy 方法接受一个已有...
实例 Run this code » 当点击 <p> 元素时,增加该元素的文本大小(每个 <p> 元素只能触发一次事件): $("p").one("click",function(){ $(this).animate...
实例 Run this code » 向 <p> 元素添加 click 事件处理程序: $(document).ready(function(){ $("p").on("click",function(){ alert("段落被...
实例 Run this code » 移除所有 <p> 元素上的 click 事件: $("button").click(function(){ $("p").off("click"); }); 定义和用法 off() 方法通常...
实例 Run this code » 在 <div> 元素上松开鼠标左键,插入一些文本: $("div").mouseup(function(){ $(this).after("释放鼠标按钮。");}); 定义和用法 当鼠...
实例 Run this code » 当鼠标指针位于 <p> 元素上方时,设置背景色为黄色: $("p").mouseover(function(){ $("p").css("background-color","yellow"...