2009-09-09 102 views
4

嗨我是新來的jquery,我也不是一個程序員。
我試過在google上搜索答案,但我找不到答案。
這是我的排隊,我有一個項目列表,只有點擊按鈕「排序」後才能排序。並且在點擊「確認」按鈕後,項目列表不應該被分類。
我的腳本不起作用。任何人都可以幫忙嗎?


jquery ui sortable - 如何禁用排序,如果它被觸發?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
    <title>sortable test</title> 
    <script type="text/javascript" src="http://www.google.com/jsapi"></script> 
    <script type="text/javascript">google.load("jquery", "1.3.2");google.load("jqueryui", "1.7.1");</script> 
    <style type="text/css"> 
     #sortable { 
     list-style-type: none; 
     margin: 0; 
     padding: 0; 
     width: 100%; 
     } 
     #sortable li { 
     padding: 5px; 
     font-size: 1.2em; 
     height: 1.5em; 
     background:#ccc; 
     border:1px #333 solid; 
     } 
     html>body #sortable li { 
     height: 1.5em; 
     line-height: 1.2em; 
     } 
     .ui-state-highlight { 
     height: 1.5em; 
     line-height: 1.2em; 
     background:#ffcc33!important; 
     border:1px #ff6600 solid!important; 
     } 
     .demo{ 
     width:200px; 
     margin:0 auto; 
     } 
     .btn{ 
     background:#ffcc33; 
     border:3px #ff6600 dashed; 
     color:#FFF; 
     cursor:pointer; 
     margin:5px 0; 
     } 
    </style> 
    <script type="text/javascript"> 
    $(document).ready(function(){ 
    function sort(){ 
     $("#sortable").sortable({ 
     placeholder: 'ui-state-highlight' 
     }); 
     $("#sortable").disableSelection(); 
    } 
    $('#sort').bind('click',sort); 
    $('#confirm').bind('click',sort); 
    }); 

    </script> 
    </head> 
    <body>   
    <div class="demo"> 
     <div id="sort" class="btn">Sort</div> 
     <div id="confirm" class="btn">Confirm</div> 
     <ul id="sortable"> 
     <li class="ui-state-default">Item 1</li> 
     <li class="ui-state-default">Item 2</li> 
     <li class="ui-state-default">Item 3</li> 
     <li class="ui-state-default">Item 4</li> 
     <li class="ui-state-default">Item 5</li> 
     <li class="ui-state-default">Item 6</li> 
     <li class="ui-state-default">Item 7</li> 
     </ul>  
    </div>  
    </body> 
</html> 

回答

6

使用其他功能禁用分揀機:

$(document).ready(function(){ 
    function sort(){ 
    $("#sortable").sortable({ 
     placeholder: 'ui-state-highlight' 
    }); 
    } 

    function reset(){ 
    $("#sortable").sortable('disable'); 
    } 

    $('#sort').bind('click',sort); 
    $('#confirm').bind('click',reset); 
}); 
+0

Woooo真快! 非常感謝! 它現在就像一個魅力! – ben 2009-09-09 13:06:51

+0

我發現按鈕「排序」只能執行一次,buttun「確認」被點擊後,按鈕「排序」不再是功能,所以我添加一個代碼在功能「排序」和它的工作樂趣現在:)

 $(document).ready(function(){ function sort(){ $("#sortable").sortable('enable'); $("#sortable").sortable({ placeholder: 'ui-state-highlight' }); } function reset(){ $("#sortable").sortable('disable'); } $('#sort').bind('click',sort); $('#confirm').bind('click',reset); }); 
ben 2009-09-09 16:04:56

相關問題