gpt4 book ai didi

JQuery .load() 问题

转载 作者:行者123 更新时间:2023-12-01 01:17:59 26 4
gpt4 key购买 nike

我正在尝试让以下 .load() 方法起作用。当前的代码没有像我想象的那样在 div 中显示请求的页面。想法?另外,测试 .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?event=test)

<html>
<head>
<title>test</title>
</head>
<body>
<div id="container">Yippee</div>
</body>
</html>

提前谢谢。感谢所有建议。

最佳答案

您必须将其设置为加载。

$(function(){
$("#go_val").click(function() {
$('#test_div').load('htdocs/mysite/index.cfm?event=test #container');
}
});

最好的测试方法是使用 http://getfirebug.com/并查看控制台以查看是否正在发出请求。

关于JQuery .load() 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9487960/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com