prev() 函數被用來匹配元素集的前一個兄弟元素,僅僅只有前一個兄弟元素被選擇,其子元素將被忽略。本文主要介紹了jQuery裡prev()的簡單操作程式碼,非常不錯,具有參考借鑒價值,需要的朋友可以參考下,希望能幫助到大家。
有個朋友提了個需求給我:點選按鈕刪除input,如果input剩下一個,點選按鈕全部消失。
很簡單的操作,但你如果不知道jquery裡有prev()這個方法,可能你會走很多彎路。
程式碼:
html
<p> <input type="text" placeholder="用户名"> <input type="text" placeholder="用户名"> <input type="text" type="hidden"> <input type="text" type="hidden"> <a class="reduce" onclick="less()">—</a> </p>
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
<script src="jquery-1.7.2.min.js"></script> <script> var Reduce = document.getElementsByClassName("reduce"); var Inp = document.getElementsByTagName("input"); function less(){ //查找元素的上一个元素 并移除 $(".reduce").prev().remove(); if(Inp.length < 1){ $(".reduce").remove() } } $(".reduce") </script>
這裡我混合寫的,不規範,只做一個栗子,重在理解。
相關推薦:
以上是實例分析關於jQuery裡prev()的簡單操作程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!