我现在在A页面点击一个按钮用百度弹出层方式将B页面以窗口的形式弹出
我如何在A页面上点击另一个按钮关闭B窗口然后弹出C窗口
知道的大牛告诉下解决方法啊,谢谢了~~~~~

解决方案 »

  1.   

    贴代码.还让人猜啊,真不省心.如果是大概是这样用的:
    theforever_csdn = new Popup({
    contentType: 2,
    isReloadOnClose: false,
    width: 350,
    height: 150
    });
    theforever_csdn.setContent("title", "标题");
    theforever_csdn.setContent("contentHtml", "内容");
    theforever_csdn.build();
    theforever_csdn.show();
    那就这样关闭
    theforever_csdn.close();
    然后再按上回的样子弹一个,就不用说了吧.