如何使用 jquery 设置(ajax)组合框的选定值

发布于 2024-12-12 05:47:39 字数 524 浏览 0 评论 0原文

我有一个带有行选择的 gridview,它应该通过选定的 id 设置页面的元素值...当我按下该行时,我希望我的(ajax-editable)组合框通过从异步页面转换的数据来更改其值(索引) 。我几乎尝试了一切...请需要紧急帮助...:(

function VeriYaz(id) {
        $.ajax({
            type: "GET",
            url: "VeriAl.aspx",
            data: "id=" + id,
            async: false,
            success: function (data) {
                var urunler = data.split('|');
                document.getElementById('<%= cmbkategori.ClientID %>').value = stripHTML1(urunler[0]);}
        });
        }

I have a gridview with row selection which should set the page's elements value by the selected id... When I press the row, I want my (ajax-editable)combobox to change its value(index) by the data turning from async page. I tried almost everything... Please need urgent help... :(

function VeriYaz(id) {
        $.ajax({
            type: "GET",
            url: "VeriAl.aspx",
            data: "id=" + id,
            async: false,
            success: function (data) {
                var urunler = data.split('|');
                document.getElementById('<%= cmbkategori.ClientID %>').value = stripHTML1(urunler[0]);}
        });
        }

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

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

发布评论

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

评论(2

沫尐诺 2024-12-19 05:47:39

您可以使用 val([value]) 函数通过 jQuery 设置所选值:

$("#<%=DropDownList1.ClientID%>").val("1");

编辑

如果您想根据 AJAX 返回的数据设置所选值调用,您应该能够执行以下操作:

$("#<%=DropDownList1.ClientID%>").val(stripHTML1(urunler[0]));  

要通过文本设置所选项目,您可以执行以下操作:

$("#<%=DropDownList1.ClientID%> option:contains(" + stripHTML1(urunler[0]) + ")").attr("selected", "selected");

EDIT

听起来您正在使用 AJAX Toolkit ComboBox,在这种情况下您可以尝试像这样的东西:

$find("<%=ComboBox1.ClientID%>").get_textBoxControl().value = stripHTML1(urunler[0]);

You can use the val([value]) function to set the selected value with jQuery:

$("#<%=DropDownList1.ClientID%>").val("1");

EDIT

If you want to set the selected value based on the data returning from your AJAX call, you should be able to do this:

$("#<%=DropDownList1.ClientID%>").val(stripHTML1(urunler[0]));  

To set the selected item by the text, you can do this:

$("#<%=DropDownList1.ClientID%> option:contains(" + stripHTML1(urunler[0]) + ")").attr("selected", "selected");

EDIT

It sounds like you're using the AJAX Toolkit ComboBox, in which case you can try something like this:

$find("<%=ComboBox1.ClientID%>").get_textBoxControl().value = stripHTML1(urunler[0]);
风流物 2024-12-19 05:47:39

Ajax ComboBox 具有隐藏值。

您可以从该隐藏参数仅进行验证

$('#<%= id-of-combobox.ClientID%>_HiddenField').val();

Ajax ComboBox having the Hidden value..

You can do only validation from that hidden parameter..

$('#<%= id-of-combobox.ClientID%>_HiddenField').val();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文