美文网首页
获取事件对象

获取事件对象

作者: Jycoding | 来源:发表于2022-06-23 14:26 被阅读0次

    // 函数组件

    function HelloFn () {

      // 定义事件回调函数

      const clickHandler = (e) => {

        e.preventDefault()

        console.log('事件被触发了', e)

      }

      return (

        // 绑定事件

        <a href="http://www.baidu.com/" onClick={clickHandler}>百度</a>

      )

    }

    相关文章

      网友评论

          本文标题:获取事件对象

          本文链接:https://www.haomeiwen.com/subject/xcovvrtx.html