我想用jQuery加载html代码并从这段代码中删除一些类,我的代码是:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div id="new-nav"></div>
<script>
$("#new-nav").load("/php/grab.php");
</script>
<script>
$('.main_title_news_submain_block').remove();
</script>
</body>
</html>
.remove 功能不起作用的问题,我不知道为什么?