?-6ren"> ?-function DefaultText(textBox) { textBox.focus(function() { if ($(this).val() == $(th-6ren">
gpt4 book ai didi

javascript - 如何在客户端单击时将焦点设置在 DevExpress 组合框的 ="text"事件上的 <input type "SelectedIndexChange"/>?

转载 作者:行者123 更新时间:2023-11-30 18:32:13 25 4
gpt4 key购买 nike

function DefaultText(textBox) {
textBox.focus(function()
{
if ($(this).val() == $(this)[0].title)
{
$(this).removeClass("activecss");
$(this).val("");
}
});

textBox.blur(function()
{
if ($(this).val() == "")
{
$(this).addClass("deactivatecss");
$(this).val($(this)[0].title);
}
});
textBox.blur();
}

以上函数在文档加载成功时调用。

表单.aspx

       <dx:ASPxComboBox ID="comboBoxAttributes" SelectedIndexChanged="function(s, e) { $('#textBox').focus(); }" />
</dx:ASPxComboBox>

现在它获得了 mili sec 的关注。然后转到 ASPxComboBox 的选定文本。

最佳答案

将点击事件绑定(bind)到您的按钮并调用 .focus() 以触发焦点事件:

在下拉菜单上绑定(bind)一个更改事件并调用 .focus() 来触发焦点事件:

$('#dropdown').change(function() { 
$('#textbox').focus();
});

注意:将“#dropdown”和“#textbox”分别替换为下拉列表和文本框的选择器。

进一步阅读:

关于javascript - 如何在客户端单击时将焦点设置在 DevExpress 组合框的 ="text"事件上的 &lt;input type "SelectedIndexChange"/>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9328115/

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