怎样用jquery或javascript搜索到网页页面上所有英文??
2个回答
展开全部
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script>
$(function()
{
alert($("body").text().match(/[a-zA-Z]+/g));
});
</script>
</head>
<body>
<span>中文</span>
<div>english
<div>123</div>
<span>.,!</span>
<div>haha..`</div>
<div>什么HOHO</div>
</div>
</body>
</html>
临时帮你写的哦,还有问题HI我。
<html>
<head>
<title> New Document </title>
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script>
$(function()
{
alert($("body").text().match(/[a-zA-Z]+/g));
});
</script>
</head>
<body>
<span>中文</span>
<div>english
<div>123</div>
<span>.,!</span>
<div>haha..`</div>
<div>什么HOHO</div>
</div>
</body>
</html>
临时帮你写的哦,还有问题HI我。
追问
谢谢!如果我想把页面所有英文都变成红色字体 应该怎么办?
追答
$(function()
{
var result = $("body").text().match(/[a-zA-Z]+/g);
for(var i =0; i "+result[i]+""));
}
});
可以这么改,但这肯定是不严谨的。
也不会建议你这么做,如果你想把页面上的所有英文变成红色,请去后台进行修改。
在后台输出的时候找到所有英文,再替换成红色,再输出HTML
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询