我正在使用以下网址
$url="index.php?option=my_com&task=ABC&view=new"
现在我只是在java脚本中添加这个url
alert("<?php echo $url?>");
输出
index.php?option=my_com&task=ABC&view=new
"&"
由"&"
我想显示实际的网址。 :(
答案 0 :(得分:1)
alert( '<?php echo $url?>'.replace(/\&\;/gi, "&");
答案 1 :(得分:0)
答案 2 :(得分:0)