Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在帖子表单字段集中使用 fancybox 来显示包含复选框选项的表单。我想将 iframe 复选框表单中的数据传递给父表单以进行数据库查询。
我怎么能做到这样的事情?
谢谢
尝试这样的事情:
var iframeValue = $("iframeText").val(); $(parent).find("parentElementId").val(iframeValue);
希望这会有所帮助。