dsm42026 2013-06-18 21:43
浏览 20
已采纳

从html到javascript的变量

I am wondering on how to solve my problem , but I don't know which is the best way to do this. So I have an html page in which I am passing a id through $_GET[id_plot]) that I print it like this :

  echo "var id_get_plot = '".$_GET[id_plot]."'; ";

That , I suppose is a global variable , that , let's say it clearly, we all hate. The goal is to use this var inside an external script.

The solution I am adopting right now is to instanciate a namespace and then binding the var to it , like this :

HTML

      echo " Model = Model || {};
             Model.id_get_plot = '".$_GET[id_plot]."'; ";

SCRIPT.JS

      Model = Model || {};
      Model.get_id = function(){ 
         console.log(this.id_get_plot) //it prints the right value
      });

What I am thinking is : is this a good way to solve my problem? There are other , and if possible, more elegant way to solve this ?

Thank you in advance

  • 写回答

1条回答 默认 最新

  • douju7765 2013-06-18 21:54
    关注

    Don't generate JavaScript from PHP. Use json_encode() to create a JSON object that your JS can use. This decouples the two languages, and your data will be properly escaped

    The simplest thing to put it into a namespace is the following, there are better ways, but this should get you going.

    var Model = window.Model || {
         getId: function() {
            return this.id;
         },
         // Would be better as a constructor, but since you want a singleton
         init: function(id) {
             this.id = id;
         }
    };
    // If you need more than one value, make an object out of this....
    Model.init(<?php echo json_encode($_GET['id_plot']) ?>)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 为什么apriori的运行时间会比fp growth的运行时间短呢
  • ¥15 帮我解决一下膳食平衡的线性规划模型的数据实例
  • ¥40 万年历缺少农历,需要和阳历同时显示
  • ¥250 雷电模拟器内存穿透、寻基址和特征码的教学
  • ¥200 比特币ord程序wallet_constructor.rs文件支持一次性铸造1000个代币,并将它们分配到40个UTXO上(每个UTXO上分配25个代币),并设置找零地址
  • ¥15 关于Java的学习问题
  • ¥15 如何使用chatgpt完成文本分类任务?
  • ¥15 已知速度v关于位置s的等式,怎么转化为已知位置求速度v的等式
  • ¥15 我有个餐饮系统,用wampserver把环境配置好了,但是后端的网页却进去,是为什么,能不能帮远程一下?
  • ¥15 R运行没有名称为"species"的插槽对于此对象类"SDMmodelCV"