我有一个脚本如下 -
define("url", "xyz.com", true);
我在php文件中有一个变量,如下所示 -
<script>
//alert(window.screen.width);
if (window.screen.width < 250) {
// resolution is below 10 x 25
//alert(window.screen.width);
window.location = 'http://m.<?php echo $url ?>';
}
</script>
我的问题是如何将网址作为变量添加到javascript
中我尝试了以下操作,但它不起作用并且说“#34;网站无法访问&#34;
{{1}}
答案 0 :(得分:1)
请像这样写入你的PHP文件,我尝试下面的代码,它对我来说很好:
<?php define("url","xyz.com", true); ?>
<script>
//alert(window.screen.width);
if (window.screen.width < 250) {
// resolution is below 10 x 25
//alert(window.screen.width);
window.location = 'http://m.<?php echo url ?>';
}
</script>
答案 1 :(得分:0)
只需替换:
<?php echo $url ?>
由:
<?= $url ?>
答案 2 :(得分:0)
常量不需要使用$所以只需使用
<?=url?>
它会起作用