我正在使用Visual Studio 2010和jQuery 1.7。
假设我的页面完全覆盖div宽度100%和高度100%。
我只想选择一个特定的部分并更改该部分的CSS,例如,用不同的颜色突出显示它。
我想使用jQuery突出显示DIV的特定部分
请帮帮我!!!!
更新
<html>
<head></head>
<body>
behind the whole html of the page this
div overlay's the html tag
<div Style="width:100%; height:100%; z-index:100000;">
</div>
</body>
</html>
我不想选择像bugmuncher.com这样的文字
答案 0 :(得分:0)
对某个div id或类执行突出显示。
$('#id').css('backgroundColor', 'yellow');
确保使用span标记包装特定代码。
Your sentence with a <span id="id">highlighted</span> part.
答案 1 :(得分:0)
也许试试jquery hilighter plugin。简单易用。