欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery實(shí)現(xiàn)可拖動(dòng)DIV自定義保存到數(shù)據(jù)的實(shí)例

 更新時(shí)間:2013年11月20日 16:40:38   作者:  
這篇文章主要介紹了jquery實(shí)現(xiàn)可拖動(dòng)DIV自定義保存到數(shù)據(jù),有需要的朋友可以參考一下

看到一個(gè)不錯(cuò)的jquery插件,可拖動(dòng)DIV,順序可保存到數(shù)據(jù)庫(kù)的一個(gè)實(shí)例:這里就以其中PHP實(shí)例簡(jiǎn)單說明一下:

復(fù)制代碼 代碼如下:

<?php 
//post到后臺(tái)的數(shù)據(jù) 
    if ($_POST) { 
        $ids = $_POST["ids"]; 
        for ($idx = 0; $idx < count($ids); $idx+=1) { 
            $id = $ids[$idx]; 
            $ordinal = $idx; 
            //... 
        } 
        return; 
    } 
?> 

復(fù)制代碼 代碼如下:

<!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> 
    <style type="text/css"> 
        body { font-family:Arial; font-size:12pt; padding:20px; width: 800px; margin:20px auto; border:solid 1px black; } 
        h1 { font-size:16pt; } 
        h2 { font-size:13pt; } 
        ul { width:350px; list-style-type: none; margin:0px; padding:0px; } 
        li { float:left; padding:5px; width:100px; height:100px; } 
        li div { width:90px; height:50px; border:solid 1px black; background-color:#E0E0E0; text-align:center; padding-top:40px; } 
        .placeHolder div { background-color:white!important; border:dashed 1px gray !important; } 
    </style> 
</head> 
<body> 
    <div> 
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> 

        <h1>jQuery List DragSort PHP Example</h1> 

        <a href="http://www.dbjr.com.cn/">Homepage</a><br/> 
        <br/> 

        <h2>Save list order with ajax:</h2> 

        <ul id="gallery"> 
            <?php 
                $list = array("blue", "orange", "brown", "red", "yellow", "green", "black", "white", "purple"); 
                for ($idx = 0; $idx < count($list); $idx+=1) { 
                    echo "<li data-itemid='" . $idx . "'>"; 
                    echo "<div>" . $list[$idx] . "</div>"; 
                    echo "</li>"; 
                } 
            ?> 
        </ul> 

        <script type="text/javascript" src="jquery.dragsort-0.5.1.min.js"></script> 
        <script type="text/javascript"> 
//saveOrder為回調(diào)函數(shù) 
            $("#gallery").dragsort({ dragSelector: "div", dragEnd: saveOrder, placeHolderTemplate: "<li class='placeHolder'><div></div></li>" }); 

            function saveOrder() { 
                var data = $("#gallery li").map(function() { return $(this).data("itemid"); }).get(); 
            //通過ajax模擬post的方式,post格式形式為:[0, 1, 2, 5, 4, 3, 8, 6, 7]  
                $.post("example.php", { "ids[]": data }); 
            }; 
        </script> 

        <div style="clear:both;"></div> 
    </div> 
</body> 
</html> 

相關(guān)文章

最新評(píng)論