我想知道一旦在 PHP 中存储信息,哪种方式更好、更有效。假设数据将来自 PHP 变量,并最终将在 javascript 中使用:
立即存储为 js 变量,然后在函数中使用变量
<script type="text/javascript"> var information = "lots and lots and lots of text"; // and then later use...
或者
2 .. 将其加载到 div 中,稍后使用 jquery '调用'它
<div id="whatever" information="lots and lots and lots of text"></div>
只需使用 jquery 调用“信息”元素
一种方式更好吗?还是我在浪费时间调查这个?