0

我在 js 脚本中有一个变量,我想从 php 脚本设置它并从我的 js 脚本访问。

我怎样才能以良好的编码风格方式做到这一点。

目前我在 js 脚本中使用了一个全局变量来达到这个目的:(

从 PHP 设置变量:

$js = '<script type="text/javascript">';
$js .= "g_sourceType = '$sourcetype';";
$js .= "</script>\n";

在我的 js 脚本中定义和访问它:

var g_sourceType; // at global scope

...

function SetSubmitFocus()
{
  switch (g_sourceType) {
...
4

1 回答 1

0

检查这是否有帮助

$js = '<script type="text/javascript">';
$js .= "(function() {
        g_sourceType = function() {
        return '$sourcetype';
        };   
        })();";
$js .= "</script>\n";
于 2013-07-26T09:19:28.967 回答