<div class="codetitle"> <span><a style="CURSOR: pointer" data="21381" class="copybut" id="copybut21381" onclick="doCopy('code21381')"><u>复制代码</u></a></span> 代码如下:</div> <div class="codebody" id="code21381"> <br> <br><meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <br><title>jQuery Dynamic Drag'n Drop</title> <br><script type="text/javascript" src="http://www.webresourcesdepot.com/wp-content/uploads/file/jquerydragdrop/jquery-1.3.2.min.js"></script><style type="text/css"></style> <br><script type="text/javascript" src="http://www.webresourcesdepot.com/wp-content/uploads/file/jquerydragdrop/jquery-ui-1.7.1.custom.min.js"></script> <br><style> <BR>body { <BR>font-family: Arial, Helvetica, sans-serif; <BR>font-size: 16px; <BR>margin-top: 10px; <BR>} <BR>ul { <BR>margin: 0; <BR>} <BR>#contentWrap { <BR>width: 700px; <BR>margin: 0 auto; <BR>height: auto; <BR>overflow: hidden; <BR>} <BR>#contentTop { <BR>width: 600px; <BR>padding: 10px; <BR>margin-left: 30px; <BR>} <BR>#contentLeft { <BR>float: left; <BR>width: 400px; <BR>} <BR>#contentLeft li { <BR>list-style: none; <BR>margin: 0 0 4px 0; <BR>padding: 10px; <BR>background-color:#00CCCC; <BR>border: #CCCCCC solid 1px; <BR>color:#fff; <BR>} <br><br>#contentRight { <BR>float: right; <BR>width: 260px; <BR>padding:10px; <BR>background-color:#336600; <BR>color:#FFFFFF; <BR>} <BR></style> <br><script type="text/javascript"> <BR>$(document).ready(function(){ <br><br>$(function() { <BR>$("#contentLeft ul").sortable({ opacity: 0.5, cursor: 'move', update: function() { <BR>var id=""; <BR>$("ul.ui-sortable li").each(function(){ <BR>id+=$(this).attr("id")+"<br/>"; <BR>}) <BR>$("#contentRight").html(id); <BR>} <BR>}); <BR>}); <BR>}); <BR></script> <br> <br> <br><div id="contentWrap"> <br><br><div id="contentLeft"> <br><ul class="ui-sortable"> <br><li id="recordsArray_3" style="opacity: 1; z-index: 0;" class="">3. Returned array can be found at the right</li> <br><li id="recordsArray_2">2. Dragging changes the opacity of the item</li> <br><li id="recordsArray_1" style="opacity: 1; z-index: 0;" class="">1. Once dropped, an Ajax query is activated</li> <br><li id="recordsArray_4" style="opacity: 1; z-index: 0;" class="">4. It is very very easy</li> <br><li id="recordsArray_5" style="opacity: 1; z-index: 0;" class="">5. It is very very easy</li> <br><li id="recordsArray_6" style="opacity: 1; z-index: 0;" class="">6. It is very very easy</li> <br><li id="recordsArray_7" style="opacity: 1; z-index: 0;" class="">7. It is very very easy</li> <br> </ul> <br> </div> <br><div id="contentRight"></div> <br> </div> <br> <br> </div> <br><a href="http://www.webresourcesdepot.com/wp-content/uploads/file/jquerydragdrop/" target="_blank">demo地址</a>