我正在尝试将变量从addEventListener函数传递给onclick函数。谢谢!
document.getElementById('rect').addEventListener('keyup', function() {
var index = 5;
}
asd.onclick = function() {
}
答案 0 :(得分:1)
这是方法
asd.onclick = function() {
var index = 5;
hey(index);
}
function hey (index) {
var recive = index;
console.log(index);
}