如何将一个html文件包含到另一个html文件中

时间:2016-06-09 07:00:13

标签: javascript html

我有2个HTML文件,假设a.html和b.html。在a.html中我想包含b.html。使用javascript。

2 个答案:

答案 0 :(得分:0)

你可以

<button id="btn">Click Here</button>

然后你有你的脚本

<script>
    $(document).ready(function() {
        $('#btn').on("click",function() {
           window.open ("","MsgWindow", "width = 700, height = 500");
        });
    });
</script>

这里有jquery的小提琴

https://jsfiddle.net/0znn4trr/1/

这是纯javascript中的小提琴。

https://jsfiddle.net/za8e2rg6/

答案 1 :(得分:-1)

参考以下代码:

<script type="text/javascript">
function openWindow(){
    var mywindow = window.open ("","MsgWindow", "width = 700, height = 500");
}

</script>

<html>
<body>
<button type="button" onclick="openWindow()"> Click Me !! </button>
</body>
</html>