我的细胞是空白但不是空的。 有没有办法从中清除这些内容?
答案 0 :(得分:1)
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script>
var app = angular.module('myApp', []);
app.controller('validateCtrl', function ($scope, $compile) {
$scope.createField = function () {
var lname = '<label>LastName : </label><input type="text" name="last" ng-model = "last" required/> Valid: {{myForm.last.$valid}}<br>';
var tdiv = document.createElement("div");
tdiv.innerHTML = lname;
$compile(tdiv)($scope);
document.getElementById("container").appendChild(tdiv);
}
});
</script>
<body>
<h2>Validation Example</h2>
<form ng-app="myApp"
ng-controller="validateCtrl"
name="myForm">
<div id="container">
Firstname : <input type="text" name="first" ng-model="first" required/>
Valid: {{myForm.first.$valid}} [ Here element state is displayed whether element is valid or not correctly but if we add element dynamically with create button it is not showing either valid or not. ]
</div>
<button type="button" ng-click="createField();" value="Create">Create</button>
</form>
</body>
</html>
我使用了这段代码。 此转换后的数字作为文本存储到数字中。 并且空白不是空单元格以清空单元格。 它奏效了。 对于大范围来说它有点慢,但它运行正常。