我有一個猴子腳本,用jquery使用mark.js突出顯示部分網站。我在名爲「紐約」的數組中有一個值。我想它,所以當它發現「新」字或「紐約」獨立,它並不突出,只是字符串「紐約」 代碼:mark.js突出顯示特定字詞
var instance = new Mark(document.querySelector("body"));
instance.mark(["Total%20Loss%20Reported", "NY", "NJ", "stolen", "Canada", "frame%20damage", "moderate", "New%20Jersey", "New%20York", "structural", "accident", "damage", "damaged"], {
"accuracy": "exactly"
});
$('mark').css({'background':'transparent' , 'color':'red'});
編輯:我試過20%對於空格代替的空間,也沒有工作,還試圖//G
@wOxxOm它會突出顯示字符串「new」或「york」,而不僅僅是「紐約」 – TheGuyWhoCodes