我的页面上有以下代码,我没有访问权限,需要删除它。不幸的是,它不在特定的div中。



<style type="text/css" media="screen">
html { margin-top: 32px !important; }
* html body { margin-top: 32px !important; }
@media screen and ( max-width: 782px ) {
html { margin-top: 46px !important; }
* html body { margin-top: 46px !important; }
}
</style>





我怎么能用一个jQuery代码删除它?

我真的很感谢任何帮助!

最佳答案

以下应该做的把戏

$('style[media="screen"]').remove()


如果您希望它在页面加载时

$(document).ready(function() {
  $('style[media="screen"]').remove()
})

09-28 11:15
查看更多