假设我有两个html文件,one.html和two.html。我想在one.html中包含two.html,所以我已经这样做了,
<script>
$(function(){
$("#middle").load("two.html");
});
</script>
我有一个脚本文件说,script.js我将在one.html的末尾加载
<script src="scripts/script.js" ></script>
在该文件中,我正在编写要在two.html元素上实现的函数。但这些功能并未应用于two.html。那么,这样做的正确方法是什么?
答案 0 :(得分:2)
使用$.get
jQuery函数
$.get( "tow.html", function( data ) {
$( "#middle" ).html( data );
alert( "Load was performed." );
});
答案 1 :(得分:1)
为什么不使用(隐藏?) iframe ?如果它位于同一服务器上,您可以访问父页面(one.html)的功能和元素:
window.parent.example_function();
或使用其DOM元素。
答案 2 :(得分:0)
答案 3 :(得分:0)
您可以先加载您的第二页内容,然后仅包含javascript 包含其他HTML。
$.get("two.html", function(data) {
$('#middle').html(data);
$('head').append($('<script>').attr('type', 'text/javascript').attr('src', 'scripts/script.js'));
});