test1.html 文件:
<html>
<head>
<script src="jquery-1.7.2.js">
</script>
<script>
function loadfn(){
$.get('test.html',function(data){
alert($(data).text());
//$('body div#returnData').html(data);
$.each(data, function(i, node) {
alert(i);
if (node.tagName == "SCRIPT") {
eval(node.innerHTML);
} else {
$(node).appendTo($('#returnData'));
}
});
});
test1();
test2();
}
</script>
</head>
<body>
<div id="returnData" >
</div>
<input type="button" value="Click" onclick=loadfn()>
</body>
</html>
测试.html:
<html>
<head>
<script src="/jquery-ui-timepicker-addon.js">
</script>
</head>
<script>
function test1(){
alert('test1 function');
}
</script>
<script>
function test2(){
alert('test2 function');
}
</script>
<body>
<div id="testdiv">
Text field : <input type="text" value="Test Value"/>
</div>
</body>
</html>
实际上,我需要将 test.html 页面加载到 test1.html 中,然后运行该页面中的脚本函数。
上面的代码片段不能满足要求。请让我知道我在代码片段中做错了什么。