但是这样就有一个 table => function的map了。
可以从参数table里直接找到对应的function。如果只是naming。不太好办吧。
以便我再次表达不清楚。举一个例子
table t1 , handler han1
table t2, handler han2
now implement this:
function rebind($tr, $table){
// should be like this
if $table === t1
$tr.bind(han1)
if $table === t2
$tr.bind(han2)
}
但显然,我要的是
function rebind($tr, $table){
$tr.bind($table.data("dblclick_handler");
}
【 在 ottffsse (nothing) 的大作中提到: 】
: storing in in data() is no different from naming it
--
FROM 116.247.85.*