在this Newyorker webpage中,顶部边框(显示" The Newyorker")占用大量空间。
我在"开发人员Firefox版本"中打开了网页。并使用网页检查器发现边框的div id为mobile-nav-container
。
那么,为什么以下代码不起作用? :
// ==UserScript==
// @name newyorker
// @namespace N
// @include http://www.newyorker.com/*
// @version 1
// @grant none
// ==/UserScript==
console.log('Grease monkey start');
$('#mobile-nav-container').hide();
console.log('Grease monkey end');
答案 0 :(得分:2)
似乎他们正在使用$ function来获取其他内容。尝试:
jQuery('#mobile-nav-container').hide();