JQuery实现点击按钮动态添加input文本框,限制个数

时间:2015-07-15 10:53:26   收藏:0   阅读:4199

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>

<script src="jquery-min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
  var spotMax = 30;
  if($(‘div.spot‘).size() >= spotMax) {$(obj).hide();}
  $("input#add").click(function(){     addSpot(this, spotMax);
  });
});

function addSpot(obj, sm) {
$(‘div#spots‘).append(
    ‘<div class="spot">‘ +
    ‘<input type="text" name="spot_title" /> ‘ +
    ‘<input type="text" name="spot_url" />  ‘ +
    ‘<input type="button" class="remove" value="Delete" /></div>‘)
  .find("input.remove").click(function(){
    $(this).parent().remove();
    $(‘input#add‘).show();
  });

  if($(‘div.spot‘).size() >= sm) {$(obj).hide();}
};
</script>
</head>

<body>
<form action="test.php" method="post"  name="asdf" id="asdf">
  <div id="spots">
    <input type="button" id="add" name="add" value="add" /><br />
  </div>
  <input type="button" name="Submit" value="Submit" id="send" />
</form>
<script>
  $(‘#send‘).click(function(){
  alert(‘Demonstration Only: submit disabled‘);
});
</script>
</body>
</html>

 

 

技术分享

评论(2
caihua888 2017-09-29 17:00:58
很好,值得推荐。


/*$a=$_POST[‘spot_title‘];
$new=implode("|",$a);
echo $new;


$b=$_POST[‘spot_url‘];
$newb=implode("|",$b);
echo $newb;*/

caihua888 2017-09-29 17:02:36
caihua888
很好,值得推荐。


/*$a=$_POST[‘spot_title‘];
$new=implode("|",$a);
echo $new;


$b=$_POST[‘spot_url‘];
$newb=implode("|",$b);
echo $newb;*/

显示的话,转成数组 用for循环显示就可以了。
2
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!