将单击绑定到选择选项,但不绑定到选择元素本身

发布于 2024-11-19 01:05:55 字数 146 浏览 1 评论 0原文

有没有办法将单击事件绑定到选择选项而不是选择框本身?

更改事件也对我不起作用,因为当我第一次单击该框时,我无法选择第一个选项(因为默认情况下它已被选中),而且我确实需要能够选择第一个选项。

有没有办法解决这个问题,要么绑定点击事件,要么绑定更改事件?

Is there a way to bind a click event to the select options and not to the select box itself?

The change event also won't work for me because when I first click the box I'm not able to select the first option (since it's already selected by default), and I really need to be able to also select the first option.

Is there any way to get around this, either binding a click or a change event?

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

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

发布评论

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

评论(1

山人契 2024-11-26 01:05:55

您可以:

a)添加“请选择...选项作为select。

b) 在页面加载时运行“选择已更改”代码以选择默认值 类似这样的

<select>
    <option>one</option>
    <option>two</option>
    <option>three</option>
</select>

Current Value: <span></span>

// call the changed function on document ready
// to get the 'default' value
$(function() {
    selectionChanged();
});

// hook up the change event of the select box
$('select').change(selectionChanged);

// event handler for the change event
function selectionChanged(e) {
    $('span').html($('select').val());
}

You could either:

a) Add a 'Please select...' option as the default item in the select.

b) Run the 'selection changed' code on page load to pick up the default, something like this.

<select>
    <option>one</option>
    <option>two</option>
    <option>three</option>
</select>

Current Value: <span></span>

and

// call the changed function on document ready
// to get the 'default' value
$(function() {
    selectionChanged();
});

// hook up the change event of the select box
$('select').change(selectionChanged);

// event handler for the change event
function selectionChanged(e) {
    $('span').html($('select').val());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文