首页 > Web开发 > 详细

jQuery文档操作

时间:2018-08-26 21:43:51      阅读:171      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

</head>
<body>
<div>
    <input type="text" id="v">
    <input type="button" id="add" value="添加"/>
    <input type="button" id="del" value="删除"/>
    <input type="button" id="clone" value="复制"/>
</div>
<ul id="u1">
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ul>
<script src="jquery-3.3.1.js"></script>
<script type="application/javascript">
    $(‘#add‘).click(function () {
        var v = $(‘#v‘).val();
        var temp = "<li>" + v + "</li>";
        $(‘#u1‘).append(temp);    //内部尾部追加
//        $(‘#u1‘).prepend(temp);  //内部最前面插入
//        $(‘#u1‘).after(temp);  //外部后面加
//        $(‘#u1‘).before(temp);  //外部前面加
    });
    $(‘#del‘).click(function () {
        var v = $(‘#v‘).val();
//        $(‘#u1‘).children().eq(v-1).empty();  //清空标签内容
        $(‘#u1‘).children().eq(v-1).remove();   //删除标签
    });
    $(‘#clone‘).click(function () {
        var v = $(‘#v‘).val();
        var temp = $(‘#u1‘).children().eq(v-1).clone();  //克隆标签
        $(‘#u1‘).append(temp);
    });
</script>



</body>
</html>

  

jQuery文档操作

原文:https://www.cnblogs.com/alex-hrg/p/9538894.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!