在C#中,一个DropDownList控件已经和数据库绑定,现在把DropDownList中的值复制到select中,用javascript

在C#中,一个DropDownList控件已经和数据库绑定,现在把DropDownList中的值复制到select中,用javascript,第1张

不知道你为什么要这么麻烦地去做,直接从服务器端生成一个select应该很简单。你一定要这么做的话是可以实现的。以下是代码加注解(假定你DropDownList控件的ID为“DropDownList1”)。
javascript复制的DropDownList1:<div id="myselect"></div>
<script language="javascript" type="text/javascript">
var obj = documentgetElementById("DropDownList1")parentNode; //获取DropDownList1的父节点
var str = objinnerHTMLreplace(/DropDownList1/g, "select1"); //取DropDownList1的客户端代码,并用正则表达式替换其ID为"select1"
documentgetElementById("myselect")innerHTML = str; //将代码置入myselect
</script>

以上就是关于在C#中,一个DropDownList控件已经和数据库绑定,现在把DropDownList中的值复制到select中,用javascript全部的内容,包括:在C#中,一个DropDownList控件已经和数据库绑定,现在把DropDownList中的值复制到select中,用javascript、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9479340.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存