jQuery html() 方法
实例 Run this code » 改变所有 <p> 元素的内容: $("button").click(function(){ $("p").html("Hello world!"); }); 定义和用法 html() 方法设...
实例 Run this code » 改变所有 <p> 元素的内容: $("button").click(function(){ $("p").html("Hello world!"); }); 定义和用法 html() 方法设...
实例 Run this code » 返回 <div> 元素的高度: $("button").click(function(){ alert($("div").height()); }); 定义和用法 height() 方法设置...
实例 Run this code » 检查 <p> 元素是否包含 "intro" 类: $("button").click(function(){ alert($("p").hasClass("intro")); }); 定义和...
实例 Run this code » 移除所有 <div> 元素的内容: $("button").click(function(){ $("div").empty(); }); 定义和用法 empty() 方法移除被选元素的所有...
实例 Run this code » 移除所有的 <p> 元素: $("button").click(function(){ $("p").detach(); }); 定义和用法 detach() 方法移除被选元素,包括所有的文...
实例 Run this code » 设置所有 <p> 元素的 color 属性: $("button").click(function(){ $("p").css("color","red"); }); 定义和用法 css()...
实例 Run this code » 克隆所有的 <p> 元素,并插入到 <body> 元素的结尾: $("button").click(function(){ $("p").clone().appendTo("bo...
实例 Run this code » 在每个 <p> 元素前插入内容: $("button").click(function(){ $("p").before("Hello world!"); }); 定义和用法 before(...
实例 Run this code » 设置图像的 width 属性: $("button").click(function(){ $("img").attr("width","500"); }); 定义和用法 attr() 方法设置或返回被...
实例 Run this code » 在每个 <p> 元素的结尾插入 <span> 元素: $("button").click(function(){ $("Hello World!").appendTo("p");...