gpt4 book ai didi

php - jquery 中的 .get()

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

我不久前问了一个标题为“在 jquery 中使用 .get() 工作”的问题,我在代码中犯了一个愚蠢的错误,每个人都跳了起来。我修复了这个问题,但 .get() 似乎不起作用。它应该在主体底部打印 John 和 2pm 的名字,但事实并非如此。我的路径名是正确的。有人可以帮忙吗?

<html>
<head>
<title>Testing Site</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#id").click(function(){
$('#hello').css('background-color', 'blue');
$.get("test.php",
function(data){
$('body').append( "Name: " + data.name ) //John
.append( "Time: " + data.time ); //2pm
$('body').css('background-color', 'red');
}, "json");
});
});
</script>

</head>
<body>
<span id="hello">Hello World!</span>
<input type="button" id="id" value="Click Here"></input>
</body>
</html>

这是 php

<?php echo json_encode(array("name"=>"John","time"=>"2pm")); 
?>

最佳答案

您可能会更好地使用 jQuery .getJSON() 函数,或者像现在一样在使用数据之前将数据解析为 JSON。

jQuery getJSON

关于php - jquery 中的 .get(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7353446/

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