所以我有一些名为“paper_0”、“paper_1”等的论文,我想以这种方式存储它们:
<h2 id="paper_0" onclick="doThing(this.id, 'myFunction')">Name of this thing</h2>
在我的 javascript 文件中:
//some code here
function doThing(id, func){
currentId = id; //store current game
func(); //this would create paper_0 **error**
//some code here
}
function removePaper(){
currentId.remove(); // **error**
}
所以我有这两个错误,因为id和func都是字符串。
有什么建议可以存放纸质物品吗?或者我可以给论文ID吗?