jquery before()方法入门教程

发布时间:2019-11-21编辑:脚本学堂
本文介绍了jquery before()方法的用法,包括before()方法的定义,语法结构,以及jquery before()方法的二个例子,需要的朋友参考下。

jquery中before()方法用法

before()方法可向每个匹配元素的外部的前部追加html内容。

说明:
此方法是追加内容,也就是原来的内容还在。
html内容就是内容中可以包含html标签,并且能够被浏览器渲染。
文本内容是先将内容中的html预定义字符转换成html字符实体,这样html标签就不会被渲染。

语法结构:
 

$(selector).before(content)

例一:
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.plcxue.com/" />
<title>plc学堂_www.plcxue.com</title>
<style type="text/css">
div
{
  height:150px;
  width:150px;
  background-color:green;
  margin-top:10px;
}
</style>
<script type="text/javascript" src="mytest/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("div").before("<b>  好好学习</b>");
})
</script>
</head>
<body>
  <div></div>
</body>
</html>

在原来div内容的前面追加内容。
例二:
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.plcxue.com/" />
<title>plc学堂_www.plcxue.com</title>
<style type="text/css">
div
{
  height:150px;
  width:150px;
  background-color:green;
  margin-top:10px;
}
</style>
<script type="text/javascript" src="mytest/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){ 
  $("button").click(function(){
    $(".html").before("<b>好好学习</b>");
    $(".text").text("<b>好好学习</b>");    
  })
})
</script>
</head>
<body>
<div class="html"></div>
<div class="text"></div>
<button>点击查看效果</button>
</body>
</html>