JQuery 对话框中的 $('#idField').val()
我想知道是否可以在 JQuery 对话框内的项目 id 上使用以下 JQuery 函数。
$('#idofmyfield').val()
没有返回任何东西。
I would like to know if I can use the following JQuery function on a item id located inside a JQuery Dialog.
$('#idofmyfield').val()
Didn't return anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要将选择器 ID 调整为由对话框生成的标记:
也许可以这样做:
我也遇到过类似的情况,需要提取 JSON 数据来填充对话框。我的代码有效,如下所示:
You may need to adjust your selector id to the markup that is generated by the dialog:
maybe do this:
I had a similar situation pulling JSON data to fill a dialog. My code, which works, looks like the following:
查看对话框的事件
look at the events for dialog