我对Jquery ui可选功能有一个小问题。
$("#test").selectable({
filter:'label',
stop: function() {
$(".ui-selected input", this).each(function() {
this.checked= !this.checked
});
}
});
单击时,DIV标记“test”中的HTML链接不响应。虽然DIV标记之外的HTML链接表现正常。
我正试图让DIV标签内的链接再次运行。如果您右键单击并在新选项卡或窗口中打开,它们似乎会响应,但左键单击不会执行任何操作。
感谢任何帮助。
由于
答案 0 :(得分:0)
使用cancel确保selectable不适用于您的锚标记:
$("#test").selectable({
filter:'label',
cancel: 'a',
stop: function() {
$(".ui-selected input", this).each(function() {
this.checked= !this.checked
});
}
});