使用jquery设置选择框特定选项的属性选择

发布于 2024-09-15 00:00:38 字数 437 浏览 2 评论 0原文

我有一个带有以下选项的选择框

select id="box" ><br/>
  option value="1"Same Day<br/>
  option value="5">96<br/>
  option value="4">72<br/>
  option value="3">48<br/>
  option value="2">24<br/>
select>

,我想将选中的属性添加到选项值“4”,我知道我可以通过以下方式显示它被选中

$("#box").val(4)

但这只是显示它被选中,但不会将选中的属性添加到选项4,我想要的是将选定的属性添加到选项。

请推荐

谢谢

I have a select box with following options

select id="box" ><br/>
  option value="1"Same Day<br/>
  option value="5">96<br/>
  option value="4">72<br/>
  option value="3">48<br/>
  option value="2">24<br/>
select>

I Want to add attr selected to option value '4' , i know i can show it selected via

$("#box").val(4)

But this just shows it selected but does not add attribute selected to option 4, what i want is to add attribute selected to option.

Please suggest

Thanks

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

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

发布评论

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

评论(1

我的黑色迷你裙 2024-09-22 00:00:41
$('#box').children('option:eq(3)').attr('selected', 'selected');

这利用了 eq() 选择器来查询您指定的索引。

使用 .eq() 方法而不是选择器会稍微快一些(即使输入更多):

$('#box').children('option').eq(3).attr('selected', 'selected');

因为 .eq() 使用数组切片 而不是通过 Sizzle 进行查询。
正如您所注意到的,两个版本都从零开始索引。

参考::eq.eq()

$('#box').children('option:eq(3)').attr('selected', 'selected');

That makes usage of the eq() selector which querys the index you specify.

Slightly faster (even if it's more typing) would be the method .eq() instead of the selector:

$('#box').children('option').eq(3).attr('selected', 'selected');

Since .eq() uses array slices instead of query'ing over Sizzle.
As you notice correctly, both versions start indexing at zero.

Ref.: :eq, .eq()

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