gpt4 book ai didi

javascript - 访问 JS DOM 内部的函数参数

转载 作者:行者123 更新时间:2023-12-01 01:16:35 24 4
gpt4 key购买 nike

你能帮我弄清楚我缺少什么吗?我的代码如下所示。我正在通过 JS 创建 DOM,我想访问创建它的函数中的参数,但到目前为止我还没有找到解决方法。

var createRow = function (employee, index) {
var newRow = AddRow('employeesTable');
addCellsToRow(newRow, [
....
'<input type="text" value="commission" onkeypress="userMath(event, index)">',
....
])
}

但是当我按下按键时,var index未找到,并且我尝试使用this.index,但它变为未定义。我怎样才能最好地解决这个问题?

最佳答案

尝试使用 Template Literals

`<input type="text" value="commission" onkeypress="userMath(event, ${index})">`,

OR:使用字符串连接

'<input type="text" value="commission" onkeypress="userMath(event, '+index+')>'

关于javascript - 访问 JS DOM 内部的函数参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54702786/

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