jquery - php结合变量和输出结果

时间:2016-10-16 10:51:31

标签: javascript php jquery

Html和php:

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

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

的jQuery

   .data 
str:           "MIPS is love"
replacement:   "\n"
stringtoreplace: " "

我试图将php中的动态变量$ a与jquery的变量month结合起来并将它们分开。

1 个答案:

答案 0 :(得分:0)

好的,我找到了解决方案。在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>