.val() 不设置 select 的值 (jQuery)

发布于 2024-09-17 17:48:05 字数 215 浏览 2 评论 0原文

$('.reset').click(function () {
    $('select[name=one]').val(opt2);
});​

JSFiddle 此处

我应该改变什么?

谢谢!

$('.reset').click(function () {
    $('select[name=one]').val(opt2);
});​

JSFiddle here.

What should I change?

Thanks!

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

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

发布评论

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

评论(1

白龙吟 2024-09-24 17:48:05

opt2 放在 val() 的引号中。它会作为错误出现,因为它是未定义


$('.reset').click(function () {
    $('select[name=one]').val('opt2');
});​

你问了一些其他的方法,但我只知道另一种。此方法不需要 jQuery 来运行(请注意,[0] 获取普通的 Object,而不是 jQuery 包装的 Object)。

//Without jQuery... pretty sure I'm correct with the second method, but I'm rusty on that one.
document.getElementById('formID').one.selectedIndex = 0; // Sets the select back to the first option.
document.formName.one.selectedIndex = 0;

//With jQuery
$('select[name=one]')[0].selectedIndex = 0;

Put opt2 in quotes for val(). It's coming up as an error because it is undefined.


$('.reset').click(function () {
    $('select[name=one]').val('opt2');
});​

You asked for some other methods, but I only know of one other. This method doesn't require jQuery to function (note that the [0] grabs the normal Object rather than an jQuery wrapped Object).

//Without jQuery... pretty sure I'm correct with the second method, but I'm rusty on that one.
document.getElementById('formID').one.selectedIndex = 0; // Sets the select back to the first option.
document.formName.one.selectedIndex = 0;

//With jQuery
$('select[name=one]')[0].selectedIndex = 0;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文