摘要:
angular.module('app', []) .controller('ItemController', function($scope, $interval) { // store the interval promise in this variable var promise; // simulated items array ... 阅读全文
摘要:
function myFunc() { console.log(11111); } test("myFunc"); function test(funcName) { if(typeof(eval(funcName)) == "function"){ eval(funcName+... 阅读全文