码迷,mamicode.com
首页 > Web开发 > 详细

Jquery动态增加行和删除行

时间:2015-12-21 17:52:33      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:

$("#add_5").click(function(){
 
var str_1="<tr> <td><input type=\"text\" placeholder=\"商品名称\"  class=\"reg_input mput\"> </td>" +  
"          <td>  <label class=\"radio\"> <input type=\"radio\"   name=\"Umbrella\">每天</label> " +  
"  <label class=\"radio\"> <input type=\"radio\" checked=\"checked\" name=\"Umbrella\">每次 </label>  " +  
"            </td><td>收费<input type=\"text\" placeholder=\"\"  class=\"reg_input mput\"> 元   </td>" +  
"            <td><a class=\"cancel\ onclick=\"$(this).parents(\"tr\").remove()\" >取消</a></td>" +  
"          </tr> "; 
$("#add_5s").append(str_1); 
});
 
 
  
 
   
/*删除选中行*/  
$(".cancel").live("click",function(){  
if(confirm("确定要删除吗?")){  
$(this).parents("tr").remove();  
 }   
});

 

Jquery动态增加行和删除行

标签:

原文地址:http://www.cnblogs.com/mandalaluo/p/5063645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!