jQuery中replaceAll()方法用法实例
人气:0本文实例讲述了jQuery中replaceAll()方法用法。分享给大家供大家参考。具体分析如下:
此方法用匹配元素去替换指定的内容。
replaceAll()方法的作用和replaceWith()方法是完全一样的。
语法结构:
复制代码 代码如下:
$(content).replaceAll(selector)
参数列表:
实例实例:
复制代码 代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="//www.qb5200.com/" />
<title></title>
<style type="text/css">
div{
width:100px;
height:100px;
border:1px solid blue;
}
p{
width:150px;
height:150px;
border:1px solid red;
}
</style>
<script src="jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("<div>这是div元素</div>").replaceAll("p");
});
});
</script>
</head>
<body>
<p>这是p元素</p>
<p>这是p元素</p>
<p>这是p元素</p>
<button>用div包裹每个段落</button>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。
加载全部内容