Scriptaculous中的Sortables问题

时间:2009-11-08 05:28:03

标签: javascript prototypejs scriptaculous typeerror

我在使用Scriptaculous的拖放库让我的div变得可排序时遇到了问题。

<pre id="leftcol">
<div id="id0"><h3>Date and Time</h3><div class="moduleContent"></div></div>
<div id="id14"><h3>Calculator</h3><div class="moduleContent"></div></div>
</pre>

<script type="text/javascript">
Sortable.create("leftcol", {tag:$$('div'), treeTag:$$('pre')});
</script>

当我尝试使用Safari的Web Inspector进行调试时,出现以下错误:     TypeError: Result of expression 'tagName.toUpperCase' [undefined] is not a function. dragdrop.js:932

是dragdrop.js文件中的问题还是我的代码中的问题,如果它在我的代码中,我该如何解决?感谢。

1 个答案:

答案 0 :(得分:3)

Sortable.create方法期望选项tagtagTree只是两个字符串,而不是一组DOM元素:

Sortable.create("leftcol", {tag:'div', treeTag:'pre'});

尝试here