带有 ascx 控件的 Javascript
我设计了一个 ascx 控件(我在这个问题中将其称为 customControl)。 该控件只是一系列下拉菜单,每个下拉菜单中都有文本值。 下拉菜单位于面板内。
如下所示:
然后我将其中一些放在也有文本框的页面上(我指的是它这里是文本框)
如下:
所以我需要开发的是 Javascript,当任何任何 customControl 中的下拉菜单都有一个选定的下拉索引更改事件,以查找页面上所有类型为 customControl 的控件的所有框中的所有值,然后将该文本放入文本框中。
我是否需要定义我的控件来拥有一个类,以便 JS 可以轻松找到所有这些控件,然后让 JS 函数将文本框作为控件,以便它知道要输出什么以及在哪里输出?
I designed an ascx control (I refer to it in this question as customControl). The control is just a series of drop downs with text values in each drop down. The drop downs are inside a panel.
Here it is below:
I then place a few of them on a page that also has a textbox (I refer to it here as textbox)
Here it is below:
So what I need to develop, is Javascript that when any of the drop downs in any of the customControls have a selected drop down index changed event, to find all the values in all the boxes of all the controls of type customControl on the page and simply put that text in the textbox.
Do I need to define my control to have a class so JS can find all of them easily and then have the JS function take in the textbox as control so it knows what to output and where?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用“customControlDropDown”或其他CSS类设置所有下拉菜单,并使用“bigTextBox”或其他CSS类名称设置文本框,并使用一些jQuery。
我还没有测试过这个,但它应该有效。 让我们知道。
Set all your drop downs with a css class of "customControlDropDown" or whatever and your textbox with a css class name of "bigTextBox" or whatever and use some jQuery.
I haven't tested this, but it SHOULD work. Let us know.
在你的ascx控件中,必须有类“myClass”。
在 html 或 aspx 中:
in yours ascx control, must have the class "myClass".
in html or aspx: