Jquery Selectbox 插件 onchange 并记住
我正在使用这个插件来设计我的选择框 http://abeautifulsite.net/blog/2011/01/jquery-selectbox- 我的第一个问题是我有另一段 javascript,它使用 onchange showDiv(this.value)来
显示与所选给定值关联的隐藏 div。它不再起作用了。我认为是因为这个插件正在使用 jquery 重写选择框选项,而不是使用默认选项值。我如何让它识别这些值并使用 onchange 以便我现有的脚本将再次工作?
我的第二个问题是,刷新页面时,所选选项会重置。我希望它记住刷新前选择的内容。知道如何合并吗?
I'm using this plugin to style my selectboxes
http://abeautifulsite.net/blog/2011/01/jquery-selectbox-plugin/
My first problem is that I have another piece of javascript that uses the onchange showDiv(this.value) to show a hidden div associated with the given value selected. It no longer works. I assume because this plugin is rewriting the select box options with jquery and not using the default option values. How do I get it to recognize those values and work with that onchange so my existing script will work again?
My second problem is that when refreshing the page, selected options reset. I would like it to remember what was selected before the refresh. Any idea how to incorporate that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在这个插件中尝试过 onchange 事件,它对我来说工作得很好。我已经在 firebug 中尝试过这个,它很好。我使用了下面的代码:
对我来说没问题。
I have tried the onchange event in this plugin and it is working fine for me.. I have tried this in firebug and it is fine. I have used the below code:
and its okay for me.