親フレームと子フレームの間で JavaScript ファイルを共有することは可能ですか? 私の考えは、各フレームで同じ JavaScript ファイルが再ロードされないようにすることです。たとえば、親に jquery.js ファイルがある場合、子フレームではそのスクリプトを親から継承できます。
フレームソース:
<frameset rows="78px,*" framespacing="0" frameborder="0" border="0">
<frame src="indexFrame.html" name="status" id="status"/><!-- noresize="noresize" scrolling="no"-->
<frame src="DeviceTreeMenu.html" name="desktop" id="TreeMenu"/>
<noframes>
<body>
<p>This page requires frame support and apparently this Web browser doesn't support this feature. Please check the Browser configuration, switch to another browser or try the <a href="menu.html">menu page</a> as a resort.</p>
</body>
</noframes>
</frameset>
ありがとうございました