使用text方法获取Html元素文本信息示例
获取文本信息的方法有很多,本例使用的使用的是jquery的text方法,这个方法想必大家都有使用过吧,简单实用。获取之后并使用alert将文本弹出,下面是实现代码
<!DOCTYPEhtml>
<html>
<head>
<metahttp-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>
<scripttype="text/javascript"src="js/jquery-1.9.1.min.js"></script>
</head>
<body>
<b>ShowMyText</b>
<divid="TEXT"></div>
<script>
$("#TEXT").load("qqq.txt",function(response,status,xhr){
vartext=$(this).text();
alert(text);
});
</script>
</body>
</html>