我正在使用Kendo界面TreeView
并启用了dragAndDrop
选项。当我执行拖放时,节点很好地移动到我的文本中:
function ( value ) { return access( this, function( value ) { return value === undefined ? jQuery.text( this ) : this.empty().each( function() { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.textContent = value; } } ); }, null, value,
下面的图片显示了案例:
我错过了什么?
谢谢!