占位符与toArray

时间:2014-10-29 20:50:27

标签: javascript jquery updates placeholder

我是一个学习jQuery的菜鸟。 我有这个Jquery代码可以工作:

     $( "#sortable-4" ).sortable({
      placeholder: "highlight"});  

我有这个有效的JQuery代码:

     update: function(event, ui) {
         var productOrder = $(this).sortable('toArray').toString();
         $("#sortable-9").text (productOrder);
     }

但是当我试着把它放在一起时这样:

   $(function() {
       $('#sortable-4').sortable({

           placeholder: "highlight";

          update: function(event, ui) {
             var productOrder = $(this).sortable('toArray').toString();
             $("#sortable-9").text (productOrder);
          }
       });
    });

我收到错误。为什么我不能在占位符中进行更新?

1 个答案:

答案 0 :(得分:1)

在占位符后使用逗号,而不是分号。

$(function() {
       $('#sortable-4').sortable({

           placeholder: "highlight",

          update: function(event, ui) {
             var productOrder = $(this).sortable('toArray').toString();
             $("#sortable-9").text (productOrder);
          }
       });
    });