2014-07-03 67 views

回答

0

您可以使用:contains()爲你的工作。比如說。

<!doctype html> 
<html lang="en"> 
<head> 
    <meta charset="utf-8"> 
    <title>contains demo</title> 
    <script src="//code.jquery.com/jquery-1.10.2.js"></script> 
</head> 
<body> 

<div>John Resig</div> 
<div>George Martin</div> 
<div>Malcom John Sinclair</div> 
<div>J. Ohn</div> 

<script> 
$("div:contains('John')").css("text-decoration", "bold"); 
</script> 

</body> 
</html> 

無線本地環路導致

約翰Resig的

喬治·馬丁

馬爾科姆約翰辛克萊

J.翁

請參閱documentation here。該示例來自api.jquery.com

+0

這不會突出顯示我想要的代碼。 – baihu

+0

請問你可以撥動你的密碼嗎? – Tushar

相關問題