为了账号安全,请及时绑定邮箱和手机立即绑定

将值从php文件发送到js文件

将值从php文件发送到js文件

PHP
慕后森 2023-10-15 15:24:08
我想将值从 php 传递到 js 文件,像这样的代码但不工作有什么问题吗?谢谢php 文件$var = 10;<script>var phpVar = "<?php echo json_encode($var) ?>;";</script><script type="text/javascript" src='vendor/circliful/circliful.custom.js'></script>js 文件$("#overallProgress").circliful({        animationStep: 5,        foregroundBorderWidth: 12,        backgroundBorderWidth: 6,        percent: 'alert(phpVar);', **<-- place value from php**        fontColor: '#000000',        foregroundColor: '#1a8e5f',        backgroundColor: 'rgba(0, 0, 0, 0.1)',//      icon: '\eab4',        iconColor: '#1a8e5f',        iconPosition: 'middle',//      text: 'Statistik',        textBelow: true,        animation: 1,        animationStep: 1,        start: 2,        showPercent: 1,         });抱歉,我在 php 中有错误代码,这是正确的代码<?php$var = 67;?><script>var phpVar = <?php echo json_encode($var) ?>;</script><script type="text/javascript" src='vendor/circliful/circliful.custom.js'></script>
查看完整描述

1 回答

?
繁花如伊

TA贡献2012条经验 获得超12个赞

Alert 是一个显示消息框的 JavaScript 函数,也不能用单引号括起来,只需添加 phpvar 变量并测试

percent: phpVar,


查看完整回答
反对 回复 2023-10-15
  • 1 回答
  • 0 关注
  • 78 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信