作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
很抱歉这个标题,但我不确定这个问题的正确术语是什么。我正在尝试使用 JavaScript 中的 for 循环动态生成可点击元素的表。单击时,每个元素都应触发相同的功能,但具有不同的参数。在我的代码中,我设置 onClick
功能如下:
elementArray[i].onClick = function() { clickFunction(i) };
但是,当我这样做时 clickFunction
只是取任何值 i
当前设置为,而不是我设置 onClick
时的值功能,这就是我想要的。有什么想法吗?
最佳答案
当我收到你的问题时,你想要一个具有可点击元素的表,该元素通过 diff 参数调用相同的函数。 [如果这不是你的问题,请告诉我]
因此,采用 i(索引或行号)将是该函数的参数。
HTML:
<table id='myTable'></table>
Javascript:
for(i = 9; i >= 0; i--) {
var table = document.getElementById("myTable");
// Create an empty <tr> element and add it to the 1st position of the table:
var row = table.insertRow(0);
// Insert new cells (<td> elements) at the 1st and 2nd position of the "new" <tr> element:
var cell = row.insertCell(0);
// Add some text to the new cells:
cell.innerHTML = "<input type='button' onclick='callIt("+i+")'";
}
function callIt(index) {
alert(index);
}
我正在考虑您想要单击按钮。希望对您有帮助。
您可以在w3schools上获得更多信息
关于javascript - 如何在函数中拥有动态变量而不将其链接到变化的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34647908/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!