第一种写法:(隐藏)
[webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('down-footer')[0].style.display='none'"];
第一种写法:(移除)
[webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('down-footer').remove()"];
第一种写法:(Jquery隐藏)
[webView stringByEvaluatingJavaScriptFromString:@"$('#down-footer')[0].style.display='none'"];
第一种写法:(Jquery移除)
[webView stringByEvaluatingJavaScriptFromString:@"$('#down-footer').remove()"];