gpt4 book ai didi

javascript - 通过文本选择带有 cheerio (jquery) 的选项

转载 作者:搜寻专家 更新时间:2023-11-01 00:39:33 25 4
gpt4 key购买 nike

我正在尝试使用带有 cheerio 的 HTML 元素的 text() 属性从选择下拉列表中选择一个选项。到目前为止,我正在做的是尝试将 attr 设置为选定的匹配项,即具有特定文本的元素。

这就是我正在尝试的:

$('#ddl_city option[text="testing"]').attr('selected', 'selected');

执行此操作时,我没有对 html 进行任何更改。执行此操作后,我在控制台上打印了 html 文档,但我没有看到该选项已更改为我正在选择的选项。知道为什么不起作用或其他解决方法吗?

最佳答案

你可以试试这个:

$('#ddl_city option').
filter(function () { return $(this).text() == 'testing'; }).
attr('selected', true);

感谢 Godsbest 在 this post 中的回答在 jQuery 论坛上。

关于javascript - 通过文本选择带有 cheerio (jquery) 的选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39671714/

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