我在将任何类型的变量从 PHP 传递到 JavaScript 时遇到问题。这是 jsFiddle 的一个简单示例。为什么它不返回我的字符串?
http://jsfiddle.net/funinabox/VkNe2/1/
<?php
//create php test string
$teststring = "mystring";
?>
//Convert Php string to JavaScript string
var testvar = <?php echo $teststring; ?> ;
//Display output of the array elements;
alert(testvar);