如何使用 jquery 设置(ajax)组合框的选定值
我有一个带有行选择的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
val([value])
函数通过 jQuery 设置所选值:编辑
如果您想根据 AJAX 返回的数据设置所选值调用,您应该能够执行以下操作:
要通过文本设置所选项目,您可以执行以下操作:
EDIT
听起来您正在使用 AJAX Toolkit ComboBox,在这种情况下您可以尝试像这样的东西:
You can use the
val([value])
function to set the selected value with jQuery: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:
To set the selected item by the text, you can do this:
EDIT
It sounds like you're using the AJAX Toolkit ComboBox, in which case you can try something like this:
Ajax ComboBox 具有隐藏值。
您可以从该隐藏参数仅进行验证。
Ajax ComboBox having the Hidden value..
You can do only validation from that hidden parameter..