removeAll()
优质
小牛编辑
126浏览
2023-12-01
描述 (Description)
KnockoutJS Observable removeAll()方法删除所有项并将它们作为数组返回。
语法 (Syntax)
arrayName.removeAll()
参数 (Parameters)
不接受任何参数。
例子 (Example)
<!DOCTYPE html>
<head>
<title>KnockoutJS ObservableArray removeAll method</title>
<script src = "https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.1.0.js"
type = "text/javascript"></script>
</head>
<body>
<p>Example to demonstrate removeAll() method.</p>
<button data-bind = "click: removeallEmp">Remove All Emps</button>
<p>Array of employees: <span data-bind = "text: empArray()" ></span></p>
<script>
function EmployeeModel() {
this.empName = ko.observable("");
this.chosenItem = ko.observableArray("");
this.empArray = ko.observableArray(['Scott','James','Jordan','Lee',
'RoseMary','Kathie']);
this.removeallEmp = function() {
this.empArray.removeAll();
}
}
var em = new EmployeeModel();
ko.applyBindings(em);
</script>
</body>
</html>
输出 (Output)
让我们执行以下步骤来查看上述代码的工作原理 -
将以上代码保存在array-removeall.htm文件中。
在浏览器中打开此HTML文件。
单击“删除所有Emps”按钮。