简单的增行减行
Posted wanan-01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的增行减行相关的知识,希望对你有一定的参考价值。
简单,直接放代码
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> button{ margin-left: 20px; } ul li{ margin-bottom: 10px; } </style> </head> <body> <div class="box"> <button onclick="add()">添加</button> <ul id="ul_li"> </ul> </div> </body> <script src="js/jquery.min.js"></script> <script> function add(){ $("#ul_li").append(‘<li><input type="text" /><button onclick="del(this)">删除</button></li>‘) } function del(opp){ $(opp).parent().remove(); } </script> </html>
以上是关于简单的增行减行的主要内容,如果未能解决你的问题,请参考以下文章