0
私はこのコードを試してみました:Google Map apiがページロード時にスパン(BESbewy)を追加し、RTL Webサイトの水平スクロールを修正しました。
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);
それは動作しませんでした。あなたは私に何を勧めていますか?