本文介绍了如何在javascript中刷新下拉列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在c#中绑定dropdownliat并使用ajax删除项目数据库。删除是成功但列表项diplay在下拉列表中我使用删除功能下面的删除属性,但这没有正确删除任何一个请帮助我
我是什么尝试过:
var x = document.getElementById(loginid);
x.remove(x.selectedIndex );
alert(x.selectedIndex);
这是我的代码
i bind dropdownliat in c# and i delete the item database using ajax. delete is successfull but list item diplay in dropdown list i use remove property in below the delete function but thats not properly remove any one please help me
What I have tried:
var x = document.getElementById("loginid");
x.remove(x.selectedIndex);
alert(x.selectedIndex);
this is my code
推荐答案
var x = document.getElementById("loginid");
var options= x.options;
var selectedIndex ;
var dea = x.value;
for (var i= 0; i < options.length; i++) {
if (options[i].value == dea ) {
selectedIndex = i;
break;
}
}
alert(selectedIndex);
x.remove(selectedIndex);
这篇关于如何在javascript中刷新下拉列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!