2010-10-11 75 views
0

view.aspx如何通过J-查询更改HTML图片src

<img src ="~/UserControls/Vote/Images/Arrow Up.png" id = "voteupoff" 
      runat = "server" alt ="vote up" 
    class="voteupImage" style="height: 45px; width: 45px"/> 

我wnat改变它的src〜/用户控件/投票/图片/当点击图像i表示

aftervoteupArrowUp.png view.js

$('img.voteupImage').live('click', function() { 

$('img.voteupImage').attr('src', aftervoteUp); 
    } 
but it's not working.. 

回答

5
$('img.voteupImage').live('click', function() { 
    $(this).attr('src', aftervoteUp); 
});