values.push("<?php echo "<img src=\"http://example.com/projectname/" . $offimage . "\" height=\"50\" width=\"50\"/>"; ?>");
这是我正在使用的代码,但语法有问题。任何人都可以帮助我吗
答案 0 :(得分:0)
使用此功能
// Inside double quote use single quote
<script>
values.push("<?php echo '<img src=\"http://example.com/projectname/" . $offimage . "\" height=\"50\" width=\"50\"/>'; ?>");
</script>
答案 1 :(得分:0)
试试这个:
values.push("<?php echo \"<img src='http://example.com/projectname/{$offimage}' height='50' width='50'/>\"; ?>");
答案 2 :(得分:0)
在
中使用单引号外部和双引号values.push('<?php echo "<img src=\"http://example.com/projectname/" . $offimage . "\" height=\"50\" width=\"50\"/>"; ?>');
答案 3 :(得分:0)
try this:
values.push('<?php echo "<img src=\"http://example.com/projectname/" . $offimage . "\" height=\"50\" width=\"50\"/>"; ?>');
答案 4 :(得分:0)
values.push('<?php echo \'<img src="http://example.com/projectname/'.$offimage.'" height="50" width="50"/>\'; ?>');
使用此版本。