我想在浏览器中加载并运行它时创建我的函数 javascript 的名称。
我想要这个 php 代码的等价性:
<?php
$name_function = 'toto';
function toto() {
echo 'toto';
}
$name_function();
?>
我的评估:邪恶:)
var chaine = 'TabToto';
var store = chaine.substr(3,chaine.length);
eval ('store = this.get'+store+'Store()');
好的,我想要什么:
var chaine = 'TabToto';
var store = 'get'+chaine.substr(3,chaine.length)+'Store';
store = this[store]();
我的控制器创建了一个获取商店的功能,我想使用它...