作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的模态代码
<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/
我是一名优秀的程序员,十分优秀!