我有一个任务栏。因为我列出了所有的任务,我还提供拖放选项。拖放时我需要执行一些操作。为此我写了我的代码如下..
$( ".sortable" ).sortable({
revert: true,
connectWith : ".sortable",
stop : function(){ alert(this)}
});
我试过了 this.val(),this.innerHtml。但它不起作用。
对于alert(this)它返回[object HTMLDivElement]。我想看看这个HTMLDivElement里面的内容。怎么做请指导。
答案 0 :(得分:4)
尝试
$(this).html();
而不是
this.html()