新手问题:
我有一个带有单个 p 元素的网页。我以为我可以访问事件中的 p.html() ,但不能。有没有办法将事件内的元素作为 jQuery 元素访问?
<script src="Scripts/jquery-1.8.2.js"></script>
$(function () {
$("p").first().bind('click',null, function (event) {
this.innerHTML = "this works";
this.html('this does not');
});
}
);