Тема: Draggable help
Показать сообщение отдельно
  #12 (permalink)  
Старый 17.02.2014, 00:56
Профессор
Отправить личное сообщение для xTODx Посмотреть профиль Найти все сообщения от xTODx
 
Регистрация: 04.02.2014
Сообщений: 167

<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <script src="http://code.jquery.com/jquery-latest.js"></script>
 <script src="/js/jquery-ui-1.9.2.custom.js"></script>
  <link type="text/css" href="css/custom-theme/jquery-ui-1.9.2.custom.css" rel="stylesheet" />
  <style>
    body{padding:15px;}
	
	ul { list-style-type: none; margin: 0; padding: 0; margin-bottom: 10px; }
	li { margin: 5px; padding: 5px; width: 150px; }
	#sortable{ min-height: 200px;
				width:250px;
				background: #e6e6e6 url(/css/custom-theme/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;}
	
  </style>
 <script>
	$(function() {
		$( "#sortable" ).sortable({
			revert: true
		});
		$( "#draggable li" ).draggable({
			connectToSortable: "#sortable",
			helper: "clone",
			revert: "invalid"
		});
		$( "ul, li" ).disableSelection();
		$("#trash").droppable({
        accept: "#sortable li",
        drop: function (event, ui) {
            ui.draggable.hide("slow", function () {
                $(this).remove();
                verify()
            })
		function verify() {
        var texts = [];
        $("#sortable li").each(function (indx, element) {
            texts.push($(element).text() + " ")
        });
        $(".out").html(texts)
    }

        }
    })

	});

	</script>
</head>
<body>
<ul id="draggable">
	<li  class="ui-state-default">
    <h3>Section 1</h3>
	<div>
		<input type="text" name="name"/>
	</div></li>
	<li  class="ui-state-default"><h3>Section 1</h3>
	<div>
		<input type="text" name="name2"/>
	</div></li>
</ul>
<form method="post">
<ul id="sortable">
	<li class="ui-state-default">Уже готовый модуль</li>
</ul>
<input type="submit" name="go" value='Go'/>
</form>
<div class="out"></div>

 <img src="http://www.specodegdaopt.ru/data/medium/korzina_dlya_musora_plats..jpg" alt="" id="trash" width="100" height="120">
 
<?php 
if(isset($_POST['go'])){
	echo $_POST['name'];
	}
?>
</body>
</html>

Вот что имеем
Убрал всё не нужное, что бы не было ереси. И так, не удаляет толково, не смотря на то, что обьект пропадает с поля зрения, он всё так же занимает место в родительском ul, сортируется. В общем это не удаляет его совсем
Ответить с цитированием