gpt4 book ai didi

javascript - jquery - php组合变量并输出结果

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

HTML 和 PHP:

<?php $a = 1380; ?>
<script>
<?php $b = document.write(month); ?>
</script>
<div id="firstshow">

<div id="test1">
<div class="col-xs-5 text-right">
<b><?php echo $a/$b; ?> &euro;/month</b><!-- the result I wish to divide $a from $b -->
</div>
</div>

<div class="dropdown">
<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown"><b class="pull-left">36</b>per month
<i class="fa fa-chevron-down pull-right" aria-hidden="true"></i></button>
<ul class="dropdown-menu">
<li><a href="#">12</a></li>
<li><a href="#">24</a></li>
<li><a href="#">36</a></li>
</ul>
</div>

</div>

所有 div 的下面是这个(下面)jQuery 的脚本。

jQuery

$("#firstshow .dropdown-menu li a").click(function(){   
var month = $('#firstshow button b').text($(this).text());
});

我试图将 php 中的动态变量 $a 与 jquery 的变量 Month 结合起来,并将两者分开。

最佳答案

好的,我找到了解决方案。在 div 的末尾我添加一个脚本

<script type="text/javascript">
jQuery(document).ready(function($){
$("#firstshow .dropdown-menu li a").click(function(){

$('#test1 .col-xs-5 span').text(<?php echo $a; ?> / ($(this).text()));

});
});
</script>

并更改 Html:

<div id="test1">
<div class="col-xs-7">
<span>1.459&euro;</span> <b>1.380 &euro;</b>
</div>
<div class="col-xs-5 text-right">
<b><span>36</span> &euro;/month</b>
</div>
</div>

关于javascript - jquery - php组合变量并输出结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40069444/

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