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.
iframeについて質問です。
iframe の場合、通常は次のように表示されます。
<iframe src="http://www.google.com" />
代わりに IP アドレスを入力できますか? (例えば)
<iframe src="http://192.142.1.1" />
はい。ただし、構文は<iframe src="http://google.com"></iframe>、または<iframe src="http://192.142.1.1"></iframe>です。
<iframe src="http://google.com"></iframe>
<iframe src="http://192.142.1.1"></iframe>