jQuery DOM 元素方法 - toArray() 方法 概述
jQuery 2022-06-02 00:22:02小码哥的IT人生shichen
jQuery DOM 元素方法 - toArray() 方法
实例
将 li 元素转换为数组,然后输出该数组元素的 innerHTML :
$("button").click(function(){
x=$("li").toArray()
for (i=0;i<x.length;i++)
{
alert(x[i].innerHTML);
}
});
完整实例:
<html>
<head>
<script type="text/javascript" src="https://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
x=$("li").toArray()
for (i=0;i<x.length;i++)
{
alert(x[i].innerHTML);
}
});
});
</script>
</head>
<body>
<button>输出每个列表项的值</button>
<ul>
<li>Coffee</li>
<li>Milk</li>
<li>Soda</li>
</ul>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
toArray() 方法以数组的形式返回 jQuery 选择器匹配的元素。
语法
$(selector).toArray()