所以我创建了一个由JS自动创建的表,它为每个td标记提供了一个ID
id='("+x+","+y+")'
因为x是表格行而y是表格数据
如何使用getElementById属性在其他函数中调用此ID?
答案 0 :(得分:0)
你的报价看起来不对,应该是:
document.getElementById(id)
然后你应该可以使用
x = 12
如果y = 57
和id="(12,57)"
符合self as? GKGameCenterControllerDelegate
。
答案 1 :(得分:0)
或者,如果您可以使用ES6,您可以按如下方式编写:
const
x = 4,
y = 9,
id = `(${x},${y})`;
console.log(`The ID is "${id}"`);
我个人认为这更容易阅读。