本文介绍了是jQuery dragEnable使用XSLT吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 使用XSLT的IS jQuery dragEnable? http://jqueryui.com/draggable/ [ ^ ] 我创建像这样的表 IS jQuery dragEnable working with XSLT ? http://jqueryui.com/draggable/[^]I create a table like S A C H I N 借助XSLT。我在tr标签中使用dragenable类。 $ p $ b在aspx页面我写的所有代码 < style type =text / css> .dragEnable TD { 宽度:50px; 身高:50px; text-align:center ; 字体大小:20px; } .dragEnable { } .state-highlight { border:1px solid#fcd113; background:#f8da4e url(ui-bg_glass_55_f8da4e_1x400.png)50%50%repeat-x; 颜色:#915608; 宽度:10px; } < / style> $(document).ready(function(){ debugger; $(table tr.dragEnable)。sortable({ items:'td', cursor:'move', 轴:'x , 不透明度:0.7, 占位符:'状态突出显示', 还原:true })。disableSelection(); }); 如果我尝试洗牌td标签它不起作用。但是,如果我在aspx页面中构建相同的表并将td标签随机播放,那我就错了.plz帮助我。 谢谢SACHINwith the help of XSLT. I use dragenable class in tr tag . in aspx page i write all code <style type="text/css"> .dragEnable TD { width: 50px; height: 50px; text-align: center; font-size: 20px; } .dragEnable { } .state-highlight { border: 1px solid #fcd113; background: #f8da4e url(ui-bg_glass_55_f8da4e_1x400.png) 50% 50% repeat-x; color: #915608; width: 10px; } </style>$(document).ready(function() { debugger; $("table tr.dragEnable").sortable({ items: 'td', cursor: 'move', axis: 'x', opacity: 0.7, placeholder: 'state-highlight', revert: true }).disableSelection(); });if i try shuffle the td tag its not working. but if i build same table in aspx page and shuffle the td tag its working.where i am geting mistake .plz help me .thanks推荐答案 (document).ready(function(){ debugger; (document).ready(function() { debugger; (table tr .dragEnable)。sortable({ items:'td', cursor:'move', 轴:'x', 不透明度:0.7, 占位符:'状态突出显示', 还原:true })。disableSelection(); }); 如果我尝试洗牌td标签它不起作用。但是,如果我在aspx页面中构建相同的表并将td标签随机播放,那我就错了.plz帮助我。 谢谢("table tr.dragEnable").sortable({ items: 'td', cursor: 'move', axis: 'x', opacity: 0.7, placeholder: 'state-highlight', revert: true }).disableSelection(); });if i try shuffle the td tag its not working. but if i build same table in aspx page and shuffle the td tag its working.where i am geting mistake .plz help me .thanks 这篇关于是jQuery dragEnable使用XSLT吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-28 01:54