gpt4 book ai didi

javascript - 使用jquery加载外部php文件?

转载 作者:行者123 更新时间:2023-12-03 00:18:54 25 4
gpt4 key购买 nike

请原谅我问这么基本的问题,但我多次尝试找出问题所在,但都失败了。我有一个非常简单的 html 表单,其中包含一个复选框。然后,我想使用 jquery 将外部 php 文件加载到与“内容”div 中的表单相同的页面上,以便表单可以明显更新。 php 文件只是检查复选框是否被选中并在屏幕上返回结果。这是 HTML:

<html>
<head>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#submitbutton").click(function(){
$("#content").load("loadedpage.php");
return false;
});
});
</script>
</head>

<body>
<form id="testform" action="" method="post">

<input type="checkbox" id="checkbox1" name="checkbox1" value="testcheckbox">Check this box:</input>
<input type="submit" id="submitbutton" name="submitbutton" value="Submit">
</form>

<div id="content">

</div>

</body>
</html>

这是外部 php 文件:

<?php

if(empty($_POST["checkbox1"]))
{
echo "box wasn't checked";
}
else
{
echo "box was checked";
}

?>

我的问题是,无论复选框是否被选中,php都会返回“该框未被选中”,但是,当我通过“action”属性将此表单传递给php文件时,一切都会正常工作应该,因此我知道错误可能出在 jquery.如果有人能提供一些线索,我将非常感激。

最佳答案

你的做法是错误的。您可以使用 Jquery 来做到这一点。

$(document).on("click", "#submitbutton", function(e){
e.preventDefault(); // To stop form from submitting
if($('#checkbox1').is(":checked")){
$("#content").html("Checkbox is checked");
$("#testform").submit();
}else{
$("#content").html("Checkbox is not checked");
}
});

关于javascript - 使用jquery加载外部php文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54409011/

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