首頁  >  文章  >  web前端  >  使用text方法取得Html元素文字資訊範例_javascript技巧

使用text方法取得Html元素文字資訊範例_javascript技巧

WBOY
WBOY原創
2016-05-16 16:38:171472瀏覽

取得文字資訊的方法很多,本例使用的使用的是jquery的text方法,這個方法想必大家都有使用過吧,簡單實用。取得之後並使用alert將文字彈出,下面是實作程式碼

<!DOCTYPE html> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
 <style> 
 p { margin:8px; font-size:20px; color:blue;  
   cursor:pointer; } 
 b { text-decoration:underline; } 
 button { cursor:pointer; } 
 </style> 
  <script type="text/javascript" src="js/jquery-1.9.1.min.js"></script> 
</head> 
<body> 
   
<b>Show My Text</b> 
<div id="TEXT"></div> 
  
<script> 
$("#TEXT").load("qqq.txt", function(response, status, xhr) { 
var text=$(this).text(); 
 alert( text); 
}); 
 </script> 
</body> 
</html>
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn