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.
我有一个名为“X”的网页,另一个网页位于名为“Y”的 iframe 中。页面“Y”每半小时更新一次,新信息到达。如果页面“Y”中有特定的文本字符串可用,我希望在页面“X”中插入一个 javascript 代码以显示警告框。
我怎么做?
这仅在 iframe 内的页面与您的父页面位于同一域中时才有效。否则您的浏览器将不允许。
您可以使用contentWindow.documentiframe 对象上的成员访问 iframe 内的页面。小例子
contentWindow.document
// assuming your iframe has an id of "myframe" document.getElementById("myframe").contentWindow.document.getElementById("someId")