4

下面的 javascript jQuery 代码有效,但我想向按钮的状态添加 2 个功能。

  1. 当用户单击其中一个按钮时,未单击的另一个按钮将获得一个新类(外观)。

  2. 两个按钮的状态都应更改为不可点击。

[div id="1" class="__button_image"] [/div]
[div id="2" class="__button_image"] [/div]
$("div.__button_image").mouseover(function () {
    $(this).addClass("__button_image_hover");
});

$("div.__button_image").mouseout(function () {
    jq(this).removeClass("__button_image_hover");
});

$("div.__button_image").click(function () {
    $(this).removeClass("__button_image_hover");
    $(this).addClass("__button_image_clicked");

    jQuery.get('/do/request');        
});
4

5 回答 5

3

这是我使用的最终代码:

$("div.__button_image").mouseover(function () {
    $(this).addClass("__button_image_hover");
});

$("div.__button_image").mouseout(function () {
    $(this).removeClass("__button_image_hover");
});

$("div.__button_image").click(function () {

    /** change button look to 'clicked' */
    $(this).addClass("__button_image_clicked");

    /** get the id of the current button */
    b_id = $(this).attr('id');

    /** unbind both vote buttons for *no* interaction */
    $("div.__button_image").unbind('click');
    $("div.__button_image").unbind('mouseover');
    $("div.__button_image").unbind('mouseout');

    /**
     * wire the .each function to iterate the classes 
     * so we can change the look of the one that was 
     * not clicked.
    */
    $('div.__button_image').each(function() {
      button_id = $(this).attr('id');
      if(button_id!=b_id) {
         $('#'+button_id).removeClass("__button_image");
         $('#'+button_id).addClass("__button_image_gray");  

    }
});

jQuery.get('/do/request?id='+b_id); 
$(this).parent().css('cursor', 'default');
于 2009-04-20T21:58:31.453 回答
2

有什么问题?我唯一能看到你失踪的是

$("div.__button_image").unbind('click');

这将删除“点击”处理程序(将其设置回默认值)。

于 2009-04-18T18:38:19.423 回答
1

我会将您的 click() 处理程序更改为:

$("div.__button_image").click(function () { 
    $(this).removeClass("__button_image_hover");
    $(this).addClass("__button_image_clicked");

    /*
     * Add look class to all buttons, then remove it from this one
     */
    $("div.__button_image").addClass("look");
    $(this).removeClass("look");

    /*
     * Remove click handler from all buttons
     */
    $("div.__button_image").unbind('click');

    jQuery.get('/do/request');        
});
于 2009-04-19T19:17:59.210 回答
1

这总是对我有用(也将不透明度更改为 80% 并将光标更改为等待)

$("#buttonDivId").css({opacity: 0.8, cursor: "wait"}).prop("disabled", true);
于 2012-11-04T22:00:04.600 回答
0

如果您使用的是 JQuery UI,则可以使用 disable 方法。

$("selector").button("disable");

http://api.jqueryui.com/button/

于 2012-12-19T00:46:20.093 回答