remove([set of values]) 方法
描述
KnockoutJS Observable remove([set of values]) 方法删除与给定值集匹配的项目。
语法
arrayName.remove([set of values])
参数
此方法接受值集形式的参数。
示例
<!DOCTYPE html> <head> <title>KnockoutJS ObservableArray remove multiple 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 remove([set of values]) method.</p> <button data-bind = "click: removemultiEmp">Remove multiple 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.removemultiEmp = function() { alert("This function is removing multiple matching items e.g.['RoseMary','Lee']."); this.empArray.removeAll(['RoseMary','Lee']); } } var em = new EmployeeModel(); ko.applyBindings(em); </script> </body> </html>
输出
让我们执行以下步骤来查看上述代码的工作原理 −
将上述代码保存在 array-remove-set.htm 文件中。
在浏览器中打开此 HTML 文件。
单击"删除多个 Emps"按钮。