runoops.com

标签:jQuery

第18页
jQuery HTML / CSS 方法

jQuery empty() 方法

阅读(384)

实例 Run this code » 移除所有 <div> 元素的内容: $("button").click(function(){ $("div").empty(); }); 定义和用法 empty() 方法移除被选元素的所有...

jQuery HTML / CSS 方法

jQuery detach() 方法

阅读(371)

实例 Run this code » 移除所有的 <p> 元素: $("button").click(function(){ $("p").detach(); }); 定义和用法 detach() 方法移除被选元素,包括所有的文...

jQuery HTML / CSS 方法

jQuery css() 方法

阅读(469)

实例 Run this code » 设置所有 <p> 元素的 color 属性: $("button").click(function(){ $("p").css("color","red"); }); 定义和用法 css()...

jQuery HTML / CSS 方法

jQuery attr() 方法

阅读(499)

实例 Run this code » 设置图像的 width 属性: $("button").click(function(){ $("img").attr("width","500"); }); 定义和用法 attr() 方法设置或返回被...