我可以发送这样的数据(数据不同)吗?

$("div.test").bind("click", {foo: "bar1"}, function(event) { ... })
$("div.test").bind("mouseenter", {foo: "bar2"}, function(event) { ... })
$("div.test").bind("mouseleave", {foo: "bar3"}, function(event) { ... })


但具有以下结构:

$("div.test").bind({
  click: function(){ ... },
  mouseenter: function(){ ... },
  mouseleave: function(){ ... }
});


并且也可以发送相同的信息,“但不能在声明数据变量之前:

不是这个:

var data = "test";
$("div.test").bind({
  click: function(){
   // use data
  },
  mouseenter:{
   // use data
  },
  mouseleave: {
   // use data
  }
});


谢谢

最佳答案

我不确定为什么这很重要,但是如果您不希望它再次运行选择器,则可以执行以下两项操作:
1)在绑定之前保存对象:

var $mytest = $("div.test");
$mytest.bind("click", {foo: "bar1"}, function(event) { ... });
$mytest.bind("mouseenter", {foo: "bar2"}, function(event) { ... });
$mytest.bind("mouseleave", {foo: "bar3"}, function(event) { ... });


2)您可以将它们链接起来:

$("div.test").bind("click", {foo: "bar1"}, function(event) { ... })
    .bind("mouseenter", {foo: "bar2"}, function(event) { ... })
    .bind("mouseleave", {foo: "bar3"}, function(event) { ... });


您还有其他理由要这样做吗?

编辑
为了明确回答这个问题,不,如果不使用jQuery“ map”对象格式在外部声明数据,就无法传递数据。除非您手动触发事件,否则我认为这不是您要执行的操作。

09-11 18:20
查看更多