例如,這有效嗎?`id`屬性在iframe中需要是唯一的嗎?
<!doctype html>
<html>
<head>
<title>Some Iframes</title>
</head>
<body>
<iframe id="frame1" src="/html/test-frame.html"></iframe>
<iframe id="frame2" src="/html/test-frame.html"></iframe>
</body>
</html>
所在的文件test-frame.html
具有內容:
<!doctype html>
<html>
<head>
<title>Test Iframe</title>
</head>
<body>
<button id="subscribe">Subscribe</button>
</body>
</html>
我希望能夠使用相同的HTML和腳本相同的一組I幀。
你確實在iframe元素中有內容嗎?它會被所有支持幀的瀏覽器忽略,這意味着所有的瀏覽器,除非特別配置爲假裝它們不會執行幀。你的意思是'iframe'元素具有'src'屬性是指包含相同元素的文檔? –
是的。我更新了這個例子,以減少人爲操作。 – Mack