答案 0 :(得分:2)
这是代码
if($('title:contains("Your specific string")')){
// do your task
$( "span.conditionHilite:contains('Standard')" )
.text('Approved Selection').addClass( "approvedSelectionHilite" );
}
答案 1 :(得分:0)
我遇到的情况是,我需要能够根据网站标题标签中的字符串来定位几个div。
你可以像这样缓存它:
var title = document.title.trim(); // <---gives you the title of the document.
$( "div:contains("+title+")").css('border', 'solid red 1px');
当您使用上面的代码段时,您可以看到它在做什么:
var title
中缓存文档标题。var title
进行连接。答案 2 :(得分:0)
您应该使用语法 $(&#34; [attribute =&#39; value&#39;]&#34;) 这里的文件 https://api.jquery.com/attribute-equals-selector/
例如,您可以更改title = Standard
的所有div的文本$("div[title='Standard']).each(function(index,value){
$(this).text("change-me")
});