使用MathField初始化的以下输入元素是不可编辑的。
<input class="form-control input-lg" ng-model="question" id="question" style="border:0px;" placeholder="* Question" type="text"/>
并在控制器中
MQ.MathField($scope.answerSpan, {
handlers: {
edit: function() {
$scope.answerSpan1 = answerMathField.latex();
if ($scope.$root.$$phase != '$apply' && $scope.$root.$$phase != '$digest')
$scope.$apply();
}
}
});
MathQuill和AngularJS是否相互干扰?