gpt4 book ai didi

javascript - 将表的特定行发送到函数

转载 作者:行者123 更新时间:2023-12-03 09:33:12 24 4
gpt4 key购买 nike

您好,我正在尝试从由 ng Repeat 填充的 html 表中提取特定行数据

<script> var wmodel=function(s) { alert(s); } </script>

表格

<body> <div ng-app="myApp" ng-controller="customersCtrl"> <table><tr ng-repeat="x in names">
<td>{{ x.Name }}</td>
<td>{{ x.Country }}</td>
<td><a href="#" onclick="wmodel(this.x)"> View details</a> </td>

但是我得到的 x 是未定义的,请帮忙

最佳答案

尝试这样:

<a href="#" ng-click="wmodel(x)"> View details </a>

在 Controller 中:

angular.module('myApp', []).controller('customersCtrl', ['$scope', function ($scope) {
$scope.wmodel = function (s) {
alert(s);
};
}]);

关于javascript - 将表的特定行发送到函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31427535/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com