如何在prototypejs中编写以下jquery?
<a class="button view" style="cursor:pointer" id="addComment"></a>
$(function() {
$("#addComment").click(function(){
alert("hello world");
});
});
答案 0 :(得分:1)
Event.observe('addComment', 'click', function(event) {
alert('u clicked on click here');
});