使用 document.createElement 我正在創(chuàng)建一個<input>. 如何從 React 設(shè)置 onClick 屬性?var input = document.createElement("input");
input.onClick = {setCount()}; //???反應(yīng) cpde:<input type="submit" onClick={() => {
var input = document.createElement("input");
input.onClick = {};
document.getElementById("cards").prepend(input); }}/>
如何使用 document.createElement 從 React 設(shè)置 onClick?
holdtom
2023-07-29 14:51:32