热门IT资讯网

angular 总结

发表于:2024-11-30 作者:热门IT资讯网编辑
编辑最后更新 2024年11月30日,手动添加select$scope.editSelectList = $scope.listobj[_columnName];$scope.editValue = $scope.editValue +
  1. 手动添加select

$scope.editSelectList = $scope.listobj[_columnName];$scope.editValue = $scope.editValue + "";$div = '
';var template = angular.element($div);var $element = $compile(template)($scope);$(_th).append($element);

2.number只能输入数字、小数的限制

onkeyup="this.value=this.value.replace(/[^\d{1,}\.\d{1,}|\d{1,}]/g,'')"

3.file类型的input,上传文件时,change事件

onchange="angular.element(this).scope().fileChanged(this)";

4.判断是否是空对象

angular.equals({}, obj);

5.隐藏提交input




0