gpt4 book ai didi

javascript - 如何使用PHP从复选框中获取值?

转载 作者:行者123 更新时间:2023-11-29 21:53:00 24 4
gpt4 key购买 nike

我有一个表格,其中有一个复选框,在选择此复选框时,来自不同页面的值将通过ajax加载,加载这些值后,用户可以选择它们,然后提交并将其保存在数据库中。

值已正确加载,但是当我提交表单时,值没有被携带到后端。

<!doctype html>
<head>
<script>
$(document).ready(function () {
$('#drive').change(function () {
if ($(this).is(':checked')) {
var catid = $('#drive').val();
console.log($('#drive'))
if (catid != 0)

{
LodingAnimate();
$.ajax({
type: 'post',
url: 'c_datetime.php',
data: {
id: catid
},
cache: false,
success: function (returndata) {
$('#datetime').html(returndata);
console.log(returndata)
}
});

function LodingAnimate() {
$("#datetime").html('<img src="img/ajax-loader.gif" height="40" width="40"/>');
}
}
}else{
$("#datetime").hide();
}
})
})
</script>
</head>
<body>
<?php
if($_POST['save'])
{
$datee = mysqli_real_escape_string($con, $_POST['datee']);
$timee = mysqli_real_escape_string($con, $_POST['timee']);
echo $datee;
echo $timee;
}
?>
<form class="form-horizontal" enctype="multipart/form-data" role="form" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="POST">
<input type="checkbox" name ="chk" id="drive" value="Drive" style="margin-left: -20px;" >Drive
<div id="datetime"> </div>
<button class="btn btn-default btn-border" style="color:white; border-radius: 25px;" type="submit" value="submit" name="save">PROCEED TO POSTING</button>
</form>
</body>
</html>


c_datetime.php

<input type='text' class="form-control" name="datee" />
<input type='text' name="timee" class="form-control" />


谁能告诉我如何解决此问题?

最佳答案

您在这部分中有错误。要查看错误error_reporting(E_ALL);

<?php
if(isset($_POST['save']))// added isset.
{
$datee = mysqli_real_escape_string($con, $_POST['datee']);
$timee = mysqli_real_escape_string($con, $_POST['timee']);
echo $datee;
echo $timee;
}
?>


什么是 $con?如果它是连接对象,则您在代码中错过了 include()

关于javascript - 如何使用PHP从复选框中获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33448095/

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