0

我怎样才能完成这样的事情:

function (e) { 
if(e.("#this_button_is_clicked").true)
{//then do this}
});

?

编辑:

 $("body").click
       (
         function (e) {
             if (e.target.className !== cls || e.target.click("#bUpdate")) {
               //do this
             }
         }
       );

我有一个文本框,每当我单击其他地方时,它都会在该文本框模糊时触发。但是当我单击按钮时,它看起来并没有将其视为“body.click”,所以我只想将其添加到我的条件为button.clicked.true

4

1 回答 1

1

jQuery event objects have a target property:

if ($(e.target).is("#this_button_is_clicked"))
{
    console.log(e);
}
于 2013-01-28T19:36:00.583 回答