我有一个没有ID的iframe(由第三方生成)。iframe嵌入在着陆页上。当iframe上的提交按钮被点击时,我希望窗口或着陆页被关闭,因为当提交按钮被点击时,它将打开一个新的标签。
function() {
var iframe = document.getElementByTagName('iframe');
var sbutton = document.getElementById("form_002b_ao_submit_href");
iframe.sbutton.onclick = function() {
window.unload();
}
};
但它不会被触发
2条答案
按热度按时间nbnkbykc1#
hjzp0vay2#
如果你想在点击提交按钮后关闭主窗口,那么你可以做如下操作。
Live Preview
Link to the test page that is loaded in the iframe
HTML
JavaScript