Jquery绑定事件

时间:2010-02-10 00:03:27

标签: javascript jquery jquery-selectors

<img id="sun" href="logo.jpg"/>

如何使用JQuery绑定它,以便在点击“sun”时会发生什么? 我只想要点击onclick来晒太阳。

3 个答案:

答案 0 :(得分:2)

如果太阳是身份证,

$('#sun').click( function(eo) {
    // your code here
});

如果太阳是一个班级,

$('.sun').click( function(eo) {
    // your code here
}

答案 1 :(得分:1)

我假设“sun”是id为“sun”的元素。

$("#sun").click(function(){
  alert("I was clicked!");
});

答案 2 :(得分:0)

如果Sun是id:

$("#sun").click(function(ev){
    // this refers to the dom element
    alert("I was clicked!");
    return false
});

也许是上课:

$(".sun").click(function(ev){
    // this refers to the dom element
    alert("I was clicked!");
    return false
});

或者也许是一个类,并且可以在页面加载后很好地创建元素 - 例如通过AJAX或DOM操作。

$(".sun").live('click',function(ev){
    // this refers to the dom element
    alert("I was clicked!");
    return false
});

JQuery API参考: