是否有可能将此查询缩短为一个?
$('p:contains(Tel:)').html(function() {
return $(this).html().replace('Tel:', '<strong>Tel:</strong>');
});
$('p:contains(Fax:)').html(function() {
return $(this).html().replace('Fax:', '<strong>Fax:</strong>');
});
我的代码查找 Tel: 和 Fax: 并用<strong>
标签包装它们