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>