我正在公司网站(http://www.pershing.com/events/customer_conference/register/index.html)上从第三方提交注册表。
当用户点击“返回”时会出现问题。由于页面未刷新,因此iFrame不会调整大小。
有人可以帮帮我吗?我可以在“后退”和“下一步”按钮中添加某种类型的“onClick”功能吗?感谢。
答案 0 :(得分:0)
假设next
和back
按钮有id
(如果没有,我不知道是否可以做你想做的事):
var iframe=$('iframe#iframe_id');//iframe id
iframe.load (function(){
var next_button=iframe.contents().find("#next");
var back_button=iframe.contents().find("#back");
next_button.click(
function(){
alert('next clicked');//just to test
//add resize code here
});
back_button.click(
function(){
alert('back clicked');//just to test
//add resize code here
});
});