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 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘