关于JQ里prev()的简单操作

一个朋友提了个需求给我,如下:

点击按钮删除input,如果input剩一个,点击按钮全部消失。

很简单的操作,但是你如果不知道jquery里有prev()这个方法,可能你会走很多弯路。
代码:

html
css
       .reduce{
            display: inline-block;
            color: white;
            text-align: center;
            width: 30px;
            height: 30px;
            background: red;
            line-height: 30px;
            cursor: pointer;
        }
        input{
            height: 18px;
            padding: 5px 10px;
        }
JS


这里我混合写的,不规范,只做一个栗子,重在理解。

你可能感兴趣的:(关于JQ里prev()的简单操作)