我在我的网站上加载了一些文本,使用 jQuery 方法 load()。
我想在单击 h2 时关闭(空())我加载的 div。
我的 HTML:
<html>
<div class="info_item" id="post1">
<div name="x" class="item" id="loaded_with_ajax">
<h2>Click on this h2 should empty the div with class="item"</h2>
<h3>this is a h3</h3>
<p>this is a paragraph</p>
</div>
</div>
</html>
我的 jQuery;
$("h2").on('click', function() {
$(this).parent("div").empty();
});
也许我的代码是错误的,但即使我在点击 h2 时输入了一个 alert(),在加载的内容上,它也没有反应。
提前致谢。