我正在尝试取消1个css类,它工作正常,同时有2个输入。但我只能取消css课程..
如何解决这个问题?
$("#move").mousedown(function () {
$( "#draggable").draggable({cancel : '.scroll',
cancel : 'input'
});
});
答案 0 :(得分:1)
尝试以下方法。
取消:'。scroll,输入'
答案 1 :(得分:1)
您的代码有两个问题:
{cancel : '.scroll',cancel : 'input'}
不是有效javascript object literal,因为您使用了2个同名的媒体资源。尝试使用multiple selector:
$("#draggable").draggable({cancel : '.scroll,input'});