新手问题:
我有一个带有单个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'); }); } );