jQuery Misc toArray() 方法
jQuery 中的 toArray() 方法用于获取 jQuery 集合中作为数组包含的所有 DOM 元素
语法
语法如下 −
$(selector).toArray()
让我们看一个示例来实现 jQuery toArray() 方法 −
示例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ var arr = $("p").toArray() for (var k = 0; i< arr.length; k++) { alert(arr[k].innerHTML); } }); }); </script> </head> <body> <h2>Devices</h2> <p>This is demo text 1.</p> <p>This is demo text 2.</p> <p>This is demo text 3.</p> <p>This is demo text 4.</p> <button>GET each p value</button> </body> </html>
输出
这将生成以下输出 −
单击按钮后,警示框会显示第一个 p 值 −
再次单击确定后,将看到第二个 p 值−
同样,单击警示框中的确定按钮后,将看到其他值。
广告