如何从谷歌API中删除"BESbewy",这样就不会有过多的水平滚动条?或者至少如何删除属性"left -999"?
不是最好的方法,但它有一个小的性能紧凑,更重要的是,它可以工作:
var clearDamnSpan = setInterval(function () {
$('body > span').each(function () {
if ($(this).text() === 'BESbewy') {
//if you remove the element, You might see errors in Google Chrome
$(this).hide();
clearInterval(clearDamnSpan);
}
});
}, 500);
setTimeout(function () {
clearInterval(clearDamnSpan);
}, 50000);