代码盲,照着 @P233 的 又一个 V2EX userscript (再次感谢) 和 w3s 的 js 教程 山寨了一个 smzdm 的过滤器
隐藏标题或标签中包含指定关键字的条目(空格键触发)
});
,有的地方用 };
?不好意思,问题都比较小白,google 也没什么线索
// ==UserScript==
// @name Smzdm Filter
// @namespace
// @version 0.0.1
// @description
// @match http://www.smzdm.com/youhui/*
// ==/UserScript==
// 添加关键字
var block = /关键字1|关键字2|关键字n/;
$(document).ready(function(){
$('.lrTop>span>a').each(function() {
var tag = $(this).text();
if (tag.search(block) >= 0) {
$(this).parentsUntil('.leftWrap').hide();
}
});
$('.itemName>a').each(function() {
var tag = $(this).text();
if (tag.search(block) >= 0) {
$(this).parentsUntil('.leftWrap').hide();
}
});
});
$(document).keypress(function(e) {
if(e.which == 32) {
$('.lrTop>span>a').each(function() {
var tag = $(this).text();
if (tag.search(block) >= 0) {
$(this).parentsUntil('.leftWrap').hide();
$('.itemName>a').each(function() {
var tag = $(this).text();
if (tag.search(block) >= 0) {
$(this).parentsUntil('.leftWrap').hide();
}
});
}
});
}
});
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.