这不工作,应该吗?或者你可以停止错误,如果另一行可以做同样的:
function doTheHighlightning(searchTerms) { // loop through input array of search terms myArray = searchTerms.split(" "); for(i=0;i<myArray.length;i++) { // works. this line works if not out commented. Will highlight all words,also in the hidden elements //$('tbody').highlight(myArray[i]); // not working when trying to skip elements with display none... $('tbody').css('display') != 'none').highlight(myArray[i]); } // set background to yellow for highlighted words $(".highlight").css({ backgroundColor: "#FFFF88" }); }
我需要过滤表中的行和颜色一些词。如果选择了许多单词,数据已经成为着色的方法。所以我会尽量限制着色只通过无隐藏元素。