我試圖讓下面的.load()方法工作。當前的代碼不會在div內顯示請求的頁面,因爲我認爲它應該。思考?測試.load()方法並確定它是否正常工作的最佳方法是什麼?JQuery .load()問題
ParentPage.cfm
<script>
$("#go_val").click(function() {
$('#test_div').load('htdocs/mysite/index.cfm?event=test #container');
}
</script>
<form name="parent_form" id="parent_form">
<input type="text" name="myText" id="my_Text" value="TestValue">
<input type="button" name="go" id="go_val" value="GO">
</form>
<div id="test_div"></div>
test.cfm(又名index.cfm?事件=測試)的時間提前
<html>
<head>
<title>test</title>
</head>
<body>
<div id="container">Yippee</div>
</body>
</html>
感謝。所有的建議表示讚賞。
你確定你需要「htdocs/mysite /」嗎? – Zevan 2012-02-28 18:59:09
我試過兩種方式,有和沒有整個目錄。這些文件位於相同的文件夾中。雖然沒有改變。 – user891859 2012-02-28 19:05:47