点击prototypejs中的函数

时间:2012-06-22 09:05:55

标签: jquery prototypejs

如何在prototypejs中编写以下jquery?

<a class="button view" style="cursor:pointer" id="addComment"></a>

$(function() {
 $("#addComment").click(function(){

         alert("hello world");
     });
});

1 个答案:

答案 0 :(得分:1)

Working demo

Event.observe('addComment', 'click', function(event) {
    alert('u clicked on click here');
});​