获取子窗口在 jQuery 中选择多个值
如何在 jQuery 中打开子窗口并从生成的
我可以使用 window.open 来做到这一点,但由于我使用的是 jQuery,我想知道是否有任何插件?也许将其作为模式处理?
How can i open child window in jQuery and get selected values from generated <select multiple="multiple">
form element?
I can do it with window.open but as I am using jQuery I wonder if there are any plugins? Maybe handling this as a modal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下,jQuery 上下文将是当前文档根目录,您可以将子窗口的句柄传递给 jQuery,它会搜索它,
这将返回一个包含每个选定选项的值的数组。
By default the jQuery context will be the current document root, you can pass in the handle of the child window into jQuery and it will search this instead
This will return an array containing the value of of each selected option.
好的,我找到了解决我的问题的方法!如果您还需要将此类功能应用到您的网络应用程序中,请看看我是如何做到的!也许会有帮助!
OK, I've found a solution to my problem !! If you also need to apply such feature to your web app just see it how I did it !! Maybe it'll help!!