代码:
var app = angular.module('myApp', []);
app.controller('myController', function ($scope, $timeout) {
controller = this;
$scope.Update = function () {
$scope.value = " \\( \\frac{5}{4} \\div \\frac{1}{6} \\)";
$timeout(controller.updateMathJax, 0);
}
this.updateMathJax = function () {
MathJax.Hub.Queue(["Typeset", MathJax.Hub]);
}
});
如果该表达式最终总是返回true,那么该表达式如何有效?我没有得到它,例如,如果obj == NULL,它将返回false,在函数结束时返回true
答案 0 :(得分:2)
return
立即从方法返回,执行不会继续到下一个语句。因此,您只能从方法返回一次,您可以忽略后续指令