//需要先引入jq
setTimeout(function () {
$("[id^='_']").hide()
}, 500)
// 这个亲测有效(这不过有局限性)
$(document).scroll(function () {
if ($('iframe').length > 0) {
$('iframe').parent('div').remove()
$('iframe').remove()
}
})