gpt4 book ai didi

javascript - 在不重定向页面的情况下单击 Jquery 切换按钮时应该完成一些 PHP 过程

转载 作者:行者123 更新时间:2023-11-30 23:02:40 25 4
gpt4 key购买 nike

我在 Jquery 上有一个切换按钮,它必须显示一些额外的信息。它运行良好,我想在 PHP 上做一些处理,以便在不重定向切换页面(显示一些额外信息)的情况下在后端执行。我打破我的头太久了。请帮帮我...这是我的 Jquery 代码

<div class="hidetext"></div>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$(".hidetext").click(function () {
$(".text").toggle("slow",function(){
});
});
});

$('#hidetext').change(function() {
this.form.submit();
});
</script>
<form action="http://localhost/test/test/index.php" method="post" id="doSite">
<input type="hidden" name="credits" value="<?php echo $email;?>">
<input type="hidden" name="credits" value="<?php echo 2;?>">
<button class="hidetext">Click More Info</button>
</form>

最佳答案

您可以为此使用 ajax。

        $.ajax({
dataType: "json",
data: {"x": $x},
url: 'php/x.php',
type: 'post',
beforeSend: function(){
//What is done before to send
},
success: function(respuesta){
//what is done after send
$("x").html(respuesta.html);
},
error: function(xhr,err){
alert("readyState: "+xhr.readyState+"\nstatus: "+xhr.status+"\n \n responseText: "+xhr.responseText);
}
});

关于javascript - 在不重定向页面的情况下单击 Jquery 切换按钮时应该完成一些 PHP 过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23285629/

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