为什么 React 按钮点击无响应?

2024-11-10 12:37:28 编辑:抖狐科技 来源:摘自互联网

为什么 React 按钮点击无响应?

按钮点击无响应の原因

在提供的 React 代码中,您使用的是 handleClick 函数作为按钮的 onClick 处理程序。然而,在您的代码中没有定义此函数。这会导致按钮在点击时没有响应。

以下是如何修复此问题:

import React from 'react'

function App5() {
  // 定义 handleClick 函数
  const handleClick = () => {
    console.log(123)
  }

  return (
    <p
      style={{ position: 'relative', height: '100vh' }}
    >
      <p id="header" style={{ width: '100%', height: '24px', backgroundColor: '#ddd',
        display: 'flex', justifyContent: 'flex-end'
    }}>
        {/* Q1: 如何让区域1 在中间呢? */}
          <span style={{ margin: '0 auto' }}>区域1</span>  

        {/* Q2: 没有响应点击事件 */}
          <button 
            onClick={ handleClick }
          >开关</button>
      </p>
      <p id="content" style={{  position: 'absolute', top: '24', bottom: '24px', width: '100%', height: '100%' }}></p>
      <p id="footer" style={{  position: 'absolute', bottom: 0, width: '100%', height: '24px', backgroundColor: '#3472BB' }}></p>
    </p>
  )
}

export default App5

登录后复制

此外,您的代码中还有一些其他问题:

  • 在 span 元素中,您没有指定任何样式来使其居中。为了解决这个问题,您可以在 style 属性中添加 margin: 0 auto;。
  • 您没有使用 border-radius 属性来设置按钮圆角。如果您希望按钮为圆形,可以添加 border-radius: 50%; 到按钮的 style 属性。

以上就是为什么 React 按钮点击无响应?的详细内容,更多请关注抖狐科技其它相关文章!

本站文章均为抖狐网站建设摘自权威资料,书籍,或网络原创文章,如有版权纠纷或者违规问题,请即刻联系我们删除,我们欢迎您分享,引用和转载,我们谢绝直接复制和抄袭!感谢...
我们猜你喜欢