我想调用函数时遇到Uncaught ReferenceError错误。我想通过此函数传递一些值。函数声明是另一面。
这是我的jQuery代码,我从json数据填充表中的数据。请注意,在此用户名中,我具有rifat之类的值,当我单击或调用onget(rifat)时,我得到了Uncaught ReferenceError:rifat未定义
# https://bugs.php.net/bug.php?id=49314 if test
"$cross_compiling" = yes; then : [$4]
这里是函数体。我对其进行了控制台,但在控制权移至此处之前,我收到了此错误。这是我的函数代码
for (let i = 0; i < result.data.resultSet.length; i++) {
let tableallrowdata = {
username: result.data.resultSet[i].username,
firstname: result.data.resultSet[i].firstname,
usertype: result.data.resultSet[i].usertype
};
console.log(tableallrowdata);
let tableItem = "<tr><td>" + result.data.resultSet[i].username + "</td>";
tableItem = tableItem + '<td>' + result.data.resultSet[i].firstname + '</td>';
tableItem = tableItem + '<td>' + result.data.resultSet[i].lastname + '</td>';
tableItem = tableItem + '<td>' + result.data.resultSet[i].email + '</td>';
tableItem = tableItem + '<td>' + result.data.resultSet[i].usertype + '</td>';
tableItem = tableItem + '<td ><a onClick="onGet(' + tableallrowdata.username + ', ' + tableallrowdata.firstname + ', ' + tableallrowdata.usertype + ')"><img src="/images/Common UI Assets/Icon-16.png" ></img></a><a><img src="/images/Common UI Assets/Icon-16 _Delete.png" style="padding-left:20px;" /></a></td></tr>';
newTableData += tableItem;
}
我想得到这个是因为值是字符串。我该怎么解决?