2
/*我需要在div中打開一個網頁,該網頁包含javascript和css。是否有可能加載該JavaScript和CSS與該頁面,或者我需要將該文件包含在父頁面中?是否有可能在div中打開包含外部javascript和css的頁面?
如: -
**Page1.php**
*/
<!DOCTYPE html>
<html>
<head>
<style>
body{ font-size: 12px; font-family: Arial; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<b>Successful Response (should be blank):</b>
<a href="#" onclick="check();">click me</a>
<div id="success"></div>
<div id="b"></div>
<script>
function check(){
$('#b').load('test.php #target');
}
</script>
</body>
</html>
//我需要在DIV
// test.php的
<html>
<head></head>
<body>
<div id='target'>
<script type="text/javascript" src="script.js"></script>
I am from test page. <a href="#" onClick="loaddata()">Click Here</a>
</div>
</body>
</html>
打開test.php的
米//在test.php的的script.js包括
// 的script.js
function loaddata()
{
alert("hii");
}
//我的問題是,在做這樣的script.js不工作
這就是一個''
嘗試在php中使用include或require函數.. – Sarath 2015-03-31 04:28:24