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.
1 つのページ .aspx があり、 page では、ヘッダー ページに iframe を配置しました。
iframeページの読み込みが完了した後に読み込まれる可能性はありますか?
iframe
iframe の src を空のままにし、Javascript を使用してドキュメントの読み込み時に src を変更できます。
<body onload="function_to_change_iframe_src()"> <iframe src=""></iframe> </body>