gpt4 book ai didi

javascript - 如何在php变量中获取div的文本,而其文本来自js函数

转载 作者:行者123 更新时间:2023-11-28 01:20:26 25 4
gpt4 key购买 nike

这是我的模态代码

   <p id="getdatevalue" style="display:none;"></p> //HOW TO GET THIS DIV TEXT IN PHP

</div>

我在此 anchor 标记中获取 php 的日期

<?php
for($i = 1; $i <= $this->daysInCurrentMonth + $this->firstDayOfTheWeek; $i++) {
?><a href="#" id='<?php echo $dataVal; ?>' class="testclass">SetRecipe</a>
<?php
$day++;
}
?>

并点击此链接打开模态窗口

我在某些 div 中将日期作为 id 传递,并在单击 testclass 时获得相同的 id,这意味着我正在通过 lope 填充的 id 中获取假设 27-04-2014 的日期值

<script>
$(".testclass").click(function(event) {
var date_value = $(this).attr("id");
$("#getdatevalue").html(date_value);
});
</script>

最佳答案

使用 jquery post

<script>
$(".testclass").click(function(event) {
var date_value = $(this).attr("id");
$("#getdatevalue").html(date_value);
$.post('aPhpFile.php',{
dateVal: $("#getdatevalue").html()
});
// since you specifically asked how to get the value from that
// element, but $.post('aPhpFile.php',{dateVal:date_value});
// would be fine
});
</script>

和 php (aPhpFile.php);

 <?php
$postedVal = $_POST['dateVal'];

关于javascript - 如何在php变量中获取div的文本,而其文本来自js函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23324634/

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