无法编辑使用MathField初始化的输入元素

时间:2016-11-09 12:00:49

标签: javascript html angularjs mathquill

使用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是否相互干扰?

0 个答案:

没有答案