我有一个表,我需要上下移动元素。我有代码工作,但只要我添加一个标记,就会抛出错误:
Error: this.visualElement is undefined
Source File: http://192.9.199.11:83/templates/admin/js/jquery/ui.checkbox.js
Line: 94
HTML看起来像这样:
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<th>Menu</th>
<td>Builds the main navigation menu panel</td>
<td width="80px">
<input type="hidden" class="hiddenData" name="" value="1" />
<a href="" title="Up" class="upArrow arrowButtons"></a>
<a href="" title="Down" class="downArrow arrowButtons"></a>
</td>
</tr>
<tr>
<th>Proudly Support</th>
<td>A widget which displays company's we proudly support</td>
<td width="80px">
<input type="hidden" class="hiddenData" name="" value="2" />
<a href="" title="Up" class="upArrow arrowButtons"></a>
<a href="" title="Down" class="downArrow arrowButtons"></a>
</td>
</tr>
</table>
jQuery如下:
$(".arrowButtons").live('click', function(e) {
e.preventDefault();
});
$(".upArrow").live('click', function(e) {
var element = $(this).parent().parent();
if(element.prev().html() != null)
{
var elementContents = element.html();
$("<tr>"+elementContents+"</tr>").insertBefore(element.prev());
element.remove();
}
});
有关为何会发生这种情况的任何想法吗?
答案 0 :(得分:1)
我刚刚在ui.checkbox.js中注释掉导致问题的行,并且它正在运行。将进行适当的测试,但到目前为止,一切似乎都在起作用。