したがって、「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はどちらも文字列であるため、これら 2 つのエラーが発生します。
紙のオブジェクトをどのように保管できますか?または、論文に ID を付与できますか?