我的 PHP 文档末尾的页脚中有一个变量。但是,因为它是模板,所以在每个页面中创建的变量内容不同。该变量的大部分内容是 JS,看起来像这样:
$myVar = '
$(function() {
'.$qTip.'
$(".delDupe").click(function(){
$(this).parent().find("input").val("");
$(this).remove();
});
function custAxis() {
if ($("#axisChk").is(":checked")){
$(".customAxis").show();
} else {
$(".customAxis").hide();
}
}
custAxis();
});
这只是所有 JS 的一小部分。我想包含这个 JS,仍然将它作为 PHP 变量的一部分,但在 PHP 之外。可能吗?
$myVar = '?>
// my JS
<? ';