jquery修改/追加/删除html网页中的内容示例

[导读] 本文章来介绍利用jquery中的html()来动态替换修改html标签中的内容的实例,有需要了解的同学不防进入参考,jquery html相当于js innerHTML方法哦,具体如下。$(selector) html(content) html() 函数改变所匹

本文章来介绍利用jquery中的html()来动态替换修改html标签中的内容的实例,有需要了解的同学不防进入参考,jquery html相当于js innerHTML方法哦,具体如下。


$(selector).html(content)
html() 函数改变所匹配的 HTML 元素的内容(innerHTML)。

 代码如下 复制代码


<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
  $("p").html("Eiege.com——jquery专栏");
  });
});
</script>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type="button">请点击这里</button>
</body>
</html>


append() 函数向所匹配的 HTML 元素内部追加内容。

 代码如下 复制代码

<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
  $("p").append(" <b>Eiege.com</b>.");
  });
});
</script>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type="button">请点击这里</button>
</body>
</html>

$(selector).prepend(content)
prepend() 函数向所匹配的 HTML 元素内部预置(Prepend)内容。

 代码如下 复制代码

$("p").prepend(www.hzhuti.com);

$(selector).after(content)
after() 函数在所有匹配的元素之后插入 HTML 内容。

 代码如下 复制代码


<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
  $("p").after(" Eiege.com");
  });
});
</script>
</head>

<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type="button">请点击这里</button>
</body>

</html>


些方法对于 XML 文档和 HTML 文档均是适用的,除了:html()。

方法  描述 
addClass()  向匹配的元素添加指定的类名。 
after()  在匹配的元素之后插入内容。 
append()  向匹配的元素内部追加内容。 
appendTo()  向匹配的元素内部追加内容。 
attr()  设置或返回匹配元素的属性和值。 
before()  在每个匹配的元素之前插入内容。 
clone()  创建匹配元素集合的副本。 
detach()  从 DOM 中移除匹配元素集合。 
empty()  删除匹配的元素集合中所有的子节点。 
hasClass()  检查匹配的元素是否拥有指定的类。 
html()  设置或返回匹配的元素集合中的 HTML 内容。 
insertAfter()  把匹配的元素插入到另一个指定的元素集合的后面。 
insertBefore()  把匹配的元素插入到另一个指定的元素集合的前面。 
prepend()  向每个匹配的元素内部前置内容。 
prependTo()  向每个匹配的元素内部前置内容。 
remove()  移除所有匹配的元素。 
removeAttr()  从所有匹配的元素中移除指定的属性。 
removeClass()  从所有匹配的元素中删除全部或者指定的类。 
replaceAll()  用匹配的元素替换所有匹配到的元素。 
replaceWith()  用新内容替换匹配的元素。 
text()  设置或返回匹配元素的内容。 
toggleClass()  从匹配的元素中添加或删除一个类。 
unwrap()  移除并替换指定元素的父元素。 
val()  设置或返回匹配元素的值。 
wrap()  把匹配的元素用指定的内容或元素包裹起来。 
wrapAll()  把所有匹配的元素用指定的内容或元素包裹起来。 
wrapinner()  将每一个匹配的元素的子内容用指定的内容或元素包裹起来。