iframe替代加载外部第三方注册表

时间:2014-11-19 08:26:43

标签: asp.net

是否有使用iframe加载包含注册表单的外部网站的替代方法?

我读到这些天iframe很糟糕

1 个答案:

答案 0 :(得分:0)

如同Lenonel在评论中提到的,你可以使用jquery load方法来显示如下的html。

<html>
    <header>
        <scriptsrc="/js/jquery.js"type="text/javascript">
    </header>
   <body>
      <div id='include-from-outside'></div>
        <script type='text/javascript'>
            $('#include-from-outside').load('http://example.com/included.html');
        </script> 
    </body>
</html>

参考:http://shoaibfaruq.wordpress.com/2012/04/24/jquery-alternative-to-iframe/