gpt4 book ai didi

php - $_POST 用于 DIV 元素中的文本

转载 作者:行者123 更新时间:2023-12-01 16:15:00 25 4
gpt4 key购买 nike

由于我的网页风格,我不想使用 input & textarea并使用 $_POST[] 获取信息我需要获取 DIV 元素中的信息。

例如,我想获取以下信息:

<div class="mine" name"myname">
this is information that i want to get and put into database by PHP !
</div>

和 :
$_POST[myname];

但是我不能用 $_POST 来做,我该怎么做??

如果这种方法不能做到这一点,你知道有什么其他方法可以像这样从 DIV 获取信息吗?

最佳答案

您可以调用 onsubmit功能并在提交表单时像这样制作隐藏字段

HTML
需要为您的表单提供一个 ID id="my_form"

<form action="submit.php" method="post" id="my_form">
<div class="mine" name"myname">
this is information that i want to get and put into database by PHP !
</div>
<input type="submit" value="submit" name="submit" />
</form>

jQuery 呼吁提交表格
$(document).ready(function(){
$("#my_form").on("submit", function () {
var hvalue = $('.mine').text();
$(this).append("<input type='hidden' name='myname' value=' " + hvalue + " '/>");
});
});

PHP : 提交.php
echo $_POST['myname'];

关于php - $_POST 用于 DIV 元素中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21621568/

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