我在react js中有一个onClick函数,现在我想用www.example.com参数传递多个参数e.target。如果我使用多个参数,那么e.target就不起作用了。怎么做?
验证码:
export const App = () => {
const move_box_click = (x, y, boxHeight, boxWidth, e) => {
console.log(x, y, boxHeight, boxWidth);
console.log (e.target.id)
};
return(
<>
<input
type="input"
id="email"
name="Email"
value={value}
onClick={()=>move_box_click(100, 95, 30, 100)}
/>
<input
type="input"
id="phone"
name="Phone"
value={value}
onClick={()=>move_box_click(100, 95, 30, 100)}
/>
</>
)
}
谢谢你的努力!
1条答案
按热度按时间zzwlnbp81#
还需要传递事件