react学习(2)

1:事件绑定

  • 语法:on+事件名称={事件处理程序},整体上遵循驼峰命名
function App(){
  const clickHandler=()=>{
    console.log('按钮被点击了');
  }
  return 
}
  • 获取事件对象参数
function App(){
  const clickHandler=(e)=>{
    console.log(e);
  }
  return 
}
  • 获取其他参数
function App(){
  const clickHandler=(name)=>{
    console.log(name);
  }
  return 
}
  • 事件对象和其他参数都需要的情况(注意形参实参保持顺序一致)
function App(){
  const clickHandler=(e,name)=>{
    console.log(e,name);
  }
  return 
}
其他

ts学习(4)

2024-12-9 10:40:01

其他

react学习(5)

2024-12-9 10:40:07

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
搜索