doubianxian6557 2014-09-19 23:37
浏览 123
已采纳

如何在jquery中将带有数学运算的字符串声明为变量

PHP:

<?php
   $test = "100-12";
?>

jQuery:

var test = <?php echo $test ?>;
alert(test);

in dev tool sources (F12) it looks like this:

var test = 100-12;

but when already alerted / pass the data in other pages or just alerted the value of test becomes 89 which is the value when 100 is subtracted by 12.

i need the as is value which is 100-12 not the subtracted. how do i stop jQuery from subtracting my string.

i tried String() toString() and even "" + but nothing works.

  • 写回答

2条回答 默认 最新

  • dsmupo6631 2014-09-20 00:15
    关注

    If you want to preserve that (no arithmetic), wrap it with quotes.

    So if:

    <?php
    
    $test = "101-12"; // if this is the origin value
    
    ?>
    
    <script type="text/javascript">
    var test = '<?php echo $test; ?>'; // just put quotes in here as well, so that it does not interpolate it as intergers and do arithmentic
    alert(test);
    </script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制