本文實例講述了jQuery的text()方法用法。分享給大家供大家參考。具體分析如下:
此方法返回或者設置匹配元素的文本內容。
如需了解更多相關內容可參閱參考手冊text()方法。
特別說明:
HTML內容就是內容中可以包含HTML標簽,並且能夠被浏覽器渲染。
文本內容是先將內容中的HTML預定義字符轉換成html字符實體,這樣HTML標簽就不會被渲染。
text()方的使用:
用法一:
此方法不帶參數時候,功能是取得所有匹配元素的文本內容,並且結果是由所有匹配元素包含的文本內容組合起來的文本。
此方法與html()方法沒有參數用法類似,但是還是有很大區別:
1.html()方法取得第一個匹配元素的內容,而text()方法是取得所有匹配元素包含的內容。
2.html()方法取得內容html內容,而text()方法取得是文本內容。
實例代碼如下:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>text()函數-博客園</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(){
alert($("div").text());
})
})
</script>
</head>
<body>
<div>
<ul>
<li>html專區</li>
<li>DIV+CSS專區</li>
<li>jquery專區</li>
</ul>
</div>
<button>點擊查看效果</button>
</body>
</html>
以上代碼可以彈出取得div中的所有文本內容。
用法二:
帶有參數的時候是設置所有匹配元素的文本內容。
此方法與html()方法帶有參數的用法類似,但是還是有很大的區別:
text()方法設置的是匹配元素的文本內容,且會將HTML中的預留字符(如大於號(>))轉換成html字符實體,以便於正確顯示,而html()方法是設置匹配元素的html內容。
實例代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>text()函數-博客園</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(){
$("div").text("<span>是個內聯元素");
alert($("div").html())
})
})
</script>
</head>
<body>
<div>原來的內容</div>
<button>點擊查看效果</button>
</body>
</html>
實例代碼三:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>text()函數-博客園</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").html("<b>好好學習</b>");
$(".text").text("<b>好好學習</b>");
})
})
</script>
</head>
<body>
<div class="html"></div>
<div class="text"></div>
<button>點擊查看效果</button>
</body>
</html>
通過此實例大家可以觀察一下HTML內容和文本內容的區別。
希望本文所述對大家的jQuery程序設計有所幫助。