Jquery Selectbox 插件 onchange 并记住

发布于 2024-12-03 21:20:33 字数 401 浏览 1 评论 0原文

我正在使用这个插件来设计我的选择框 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墟烟 2024-12-10 21:20:33

我已经在这个插件中尝试过 onchange 事件,它对我来说工作得很好。我已经在 firebug 中尝试过这个,它很好。我使用了下面的代码:

function showDiv(val) {
  alert(val);
}

对我来说没问题。

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:

function showDiv(val) {
  alert(val);
}

and its okay for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文