如何通过 iframe 共享 jQuery $.data?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何通过 iframe 共享 jQuery $.data?相关的知识,希望对你有一定的参考价值。
index.html
<div id="div1"> </div> <iframe src="ajax2.html" name="frame2" frameborder="0"></iframe> <script type="text/javascript"> $("#div1").data("datagrid", {name: "叶龙龙"}); </script>
ajax2.html
console.log($("#div1",parent["frame2"].document).data());
https://stackoverflow.com/questions/4101457/access-jquery-data-from-iframe-element
https://stackoverflow.com/questions/4941435/how-to-share-jquery-data-data-through-iframes
以上是关于如何通过 iframe 共享 jQuery $.data?的主要内容,如果未能解决你的问题,请参考以下文章