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 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?