我有多种形式,我向他们添加了可排序功能
当用户拖动表单时,它们都会变小,以便用户可以看到所有这些
我正面临的问题是拖动表单时占位符不容易显示位置
这是我的js代码
jQuery('#test').sortable({
placeholder: 'ui-state-highlight',
items: '> div.foo',
distance: 5,
handle: '.move',
cancel: '',
start: function () {
jQuery(this).children('.foo').addClass('goooo');
},
stop: function () {
jQuery(this).children('.foo').removeClass('goooo');
}
});
这是尝试自己的代码
http://jsfiddle.net/Jim_Toth/jzr2g/
我对任何替代方案持开放态度,最重要的是所有形式都得到小高度 如果有一种方法可以使占位符显示总是它将是格栅