【发布时间】:2019-04-20 03:04:37
【问题描述】:
我正在从段落中找到一个特定的单词,并希望将其加粗。我已经完成了下面的代码,但它不起作用。
var text = /Lorem/ig;
$('div')
.filter(function() {
return text.test($(this).text())
}).wrap('<strong></strong>');
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has
survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing
software like Aldus PageMaker including versions of Lorem Ipsum.</div>
【问题讨论】:
-
您的 JSFIddle 代码中没有 .test() 方法。
-
谁能告诉我为什么我的代码不起作用。
标签: javascript jquery filter