gpt4 book ai didi

jquery - $.each() 在页面中选择并获取迭代选项

转载 作者:行者123 更新时间:2023-12-01 06:44:49 25 4
gpt4 key购买 nike

我想迭代所有 <select>进入页面并到达那里 options 。我使用下面的代码:

$(function(){
$('select').each(function(){
$(this + ' option').each(function(){
//can't access options
});
});
});

我收到错误:

Error: Syntax error, unrecognized expression: [object HTMLSelectElement] [option]

但是这段代码有效:

$(function(){
$('select').each(function(i,v){
$.each(v.children(),function(){
//can access options
});
});
});

第一个代码有什么问题!使用 $(this +' option') 有什么问题吗? ?

最佳答案

选择器中的这个 this 是对象,您将其用作选择器中的字符串来连接它,您可以使用 $(this).find 或传递 这个在上下文中。

$(this).find(' option')

$(' option', this)

更直接的方法是使用 Descendant Selector (“ancestor descendant”)

$('select option').each(

Child Selector (“parent > child”)就像

$('select > option').each

关于jquery - $.each() 在页面中选择并获取迭代选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35576336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com