我有一些问题:
和HTMLIFrameElement
<iframe src="/index.php"></iframe>
一样吗?为什么
<iframe src="data:text/html;base64,aHR0cDovL2V4YW1wbGUuY29t" height=1280 width=800></iframe>
工作正常,但是
a=document.getElementsByTagName('body')[0]; b=document.createElement('iframe'); b.src="data:text/html;base64,aHR0cDovL2V4YW1wbGUuY29t"; a.appendChild(b);
不工作?我的意思是在 DOM HTMLIFrameElement src 中,我可以使用编码字符串放置函数。是否可以仅在 src 变量中编码字符串?