jQuery / iframe上的后退按钮

时间:2010-07-14 00:29:21

标签: jquery iframe

我正在公司网站(http://www.pershing.com/events/customer_conference/register/index.html)上从第三方提交注册表。

  • 用户选择他们的与会者类型并点击“下一步”。
  • 此时他们被要求输入他们的信息。

当用户点击“返回”时会出现问题。由于页面未刷新,因此iFrame不会调整大小。

有人可以帮帮我吗?我可以在“后退”和“下一步”按钮中添加某种类型的“onClick”功能吗?感谢。

1 个答案:

答案 0 :(得分:0)

假设nextback按钮有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
    });
});