使用text方法获取Html元素文本信息示例
更新时间:2014年09月01日 09:03:03 投稿:whsnow
获取文本信息的方法有很多,本例使用的使用的是jquery的text方法,并使用alert将文本弹出,下面是实现代码
获取文本信息的方法有很多,本例使用的使用的是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>
相关文章
为JS扩展Array.prototype.indexOf引发的问题探讨及解决
Array没有indexOf方法,这样在一个数组中查找某个元素的索引时比较麻烦,于是通过prototype原型扩展了Array.prototype.indexOf(),在对数组进行遍历的时候却出现了问题2013-04-04


最新评论