设置<选项>的文本使用 jQuery 的元素

发布于 2024-10-25 02:43:51 字数 164 浏览 1 评论 0原文

使用 jQuery 编辑给定选择值的选项文本的最佳方法是什么。

我知道我要编辑的选项的值。我以为这会是……

$('#select').val().$('option').html('New Text');

但我显然错过了一些东西。

Using jQuery what is the best way of editing option text for a given select value.

I know the value of the option I want to edit. I thought it would be something like...

$('#select').val().$('option').html('New Text');

But I am clearly missing something.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

写下不归期 2024-11-01 02:43:51
$('#select option[value="someValue"]').text("newText")

如果添加 html 内容,可以使用 .html 而不是 .text

$('#select option[value="someValue"]').text("newText")

could use .html instead of .text, if adding html content.

笑饮青盏花 2024-11-01 02:43:51

像这样的东西吗?

$('#select').children('option').text('New Text');

有关选择正确项目的更多信息,请查看选择器。你可以做类似的事情

$('#select').children('option:first').text('New Text');

或者你可以使用

$('#select').children('option[value="thevalue"]').text('New Text');

如果你知道它的价值。

Something like this?

$('#select').children('option').text('New Text');

Have a look at Selectors for more information on selecting the correct item. You could do something like

$('#select').children('option:first').text('New Text');

Or you can use

$('#select').children('option[value="thevalue"]').text('New Text');

If you know the value.

只有影子陪我不离不弃 2024-11-01 02:43:51

您可能正在寻找 :selected 选择器和 text() 方法:

$("#select option:selected").text("New Text");

You're probably looking for the :selected selector and the text() method:

$("#select option:selected").text("New Text");
樱娆 2024-11-01 02:43:51

这个可以帮助您获取选项值,

$('#select_id').children('option[value="thevalue"]').text('New Text');

并且您可以使用 prop() 函数设置默认选择值。 此处举个例子。

This one help you to get the options value,

$('#select_id').children('option[value="thevalue"]').text('New Text');

And you can set default selected value by using prop() function. Take an example here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文