如何删除动态添加的可排序输入框中的div和添加的输入前面的索引

How to delete the div in a dynamically added sortable input boxes and indexing in front of the added input

 $('#add').click(function() {
                  var x = $('<div class="ui-state-highlight"><input type="text" class="form-control" ng-model="input.field" placeholder="Name"/><input type="text" class="form-control" ng-model="input.value" placeholder="Email"/><a href="a"><span class="glyphicon glyphicon-move"></span></a><input type="button" class="form-control" class="Minus" value="-" />' + ($('.con div').length + 1) + '</div>');
                  x.appendTo('#form .con') // the length is not working here if I use it in the front of the div while declairng the variable.
                });

                $('.Minus').on('click', '#rem .Minus', function () {
                    $(this).closest(".fruit").remove();
                    });
         
                    $("span").sortable({
                    connectWith: ".con"
                }).disableSelection();
<!DOCTYPE html>
<html>

<head>
  <script data-require="jquery@*" data-semver="2.1.4" src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
  <link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" />
  <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.9.2/jquery-ui.js"></script>

</head>


<body>

 <div>
          
 <button id="add">add another option</button>
  <form id="form" class="form-inline">
    <span class="con">
        <div class="ui-state-highlight"><input type="text" class="form-control" ng-model="input.field" placeholder="Name"/>
                <input type="text" class="form-control" ng-model="input.value" placeholder="Email"/><a href="#">
          <span class="glyphicon glyphicon-move"></span><input type="button" class="form-control" class="Minus" value="delete" />
        </a>

</div>
       
    </span>
  </form>
   </div>
  </body>
  </html>
   
 

我正在尝试在div中添加索引和删除 rows.I 尝试使用 div 的长度,但如果我将其附加在输入 boxes.Here 是 plunker http://plnkr.co/edit/4P6HWu9jVTmZhOnEhMdb?p=preview

给你:

$('#add').click(function() {
  var x = $('<div class="ui-state-highlight">' + ($('.con div').length + 1) + '<input type="text" class="form-control" ng-model="input.field" placeholder="Name"/><input type="text" class="form-control" ng-model="input.value" placeholder="Email"/><a href="a"><span class="glyphicon glyphicon-move"></span></a><input type="button" class="form-control Minus" value="-" /></div>');
  x.appendTo('#form .con') // the length is not working here if I use it in the front of the div while declairng the variable.



});

$('.con').on('click', '.Minus', function() {
  $(this).parents(".ui-state-highlight").remove();
});

$("span").sortable({
  connectWith: ".con"
}).disableSelection();
<!DOCTYPE html>
<html>

<head>
  <script data-require="jquery@*" data-semver="2.1.4" src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
  <link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" />
  <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.9.2/jquery-ui.js"></script>

</head>


<body>

  <div>

    <button id="add">add another option</button>
    <form id="form" class="form-inline">
      <span class="con">
        <div class="ui-state-highlight"><input type="text" class="form-control" ng-model="input.field" placeholder="Name"/>
                <input type="text" class="form-control" ng-model="input.value" placeholder="Email"/><a href="#">
          <span class="glyphicon glyphicon-move"></span>
      <input type="button" class="form-control" class="Minus" value="delete" />
      </a>

  </div>

  </span>
  </form>
  </div>
</body>

</html>

  1. 您有双重 class 声明,所以我将它们合并为 form-control Minus class.
  2. 还修复了 .on() 处理程序的选择器。

编辑: 您的新行标记由

定义
var x = $('<div class="ui-state-highlight"><input type="text" class="form-control" ng-model="input.field" placeholder="Name"/><input type="text" class="form-control" ng-model="input.value" placeholder="Email"/><a href="a"><span class="glyphicon glyphicon-move"></span></a><input type="button" class="form-control Minus" value="-" />' + ($('.con div').length + 1) + '</div>');

要将索引移到前面,请将此 ($('.con div').length + 1) 移到前面,如下所示:

var x = $('<div class="ui-state-highlight">' + ($('.con div').length + 1) + '<input type="text" class="form-control" ng-model="input.field" placeholder="Name"/><input type="text" class="form-control" ng-model="input.value" placeholder="Email"/><a href="a"><span class="glyphicon glyphicon-move"></span></a><input type="button" class="form-control Minus" value="-" /></div>');