使用jquery獲取標簽個數的方法:1.新建html項目,引入jquery;2.創建html標簽;3.添加button按鈕,綁定onclick點擊事件;4.通過標簽名獲取標簽對象,使用length屬性返回標簽個數;
具體步驟如下:
1.首先,新建一個html項目,并在項目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在項目中創建html標簽,用于測試;
<a href="#">測試標簽1</a><p>測試標簽2</p>
<a href="#">測試標簽3</a>
<div>測試標簽4</div>
3.測試標簽創建好后,添加一個button按鈕,并綁定onclick點擊事件;
<button omClick="set()"></button>
4.最后,按鈕添加好后,在點擊事件中通過標簽名獲取標簽對象,在使用length屬性即可返回指定標簽的個數;
function set(){
var len = $('a').lenght; //獲取a標簽個數
var res = $('p').lenght; //獲取p標簽個數
var val = $('div').lenght; //獲取div標簽個數
alert(len);
alert(res);
alert(val);
}