In React, how can I cause anchors to do nothing on

2020-03-01 07:46发布

I have the following html element:

<a href onClick={() => fields.push()}>Add Email</a>

I need the href attribute so bootstrap styles the element with a link styling (color, cursor).

Problem is, if I click that now it causes the browser to redirect. How can I update the above to not redirect the browser onClick but still run fields.push()?

6条回答
别忘想泡老子
2楼-- · 2020-03-01 07:54

try the following code snippet

<a href="true" ....>
查看更多
Bombasti
3楼-- · 2020-03-01 07:56

fields.push()}>Add Email

In TypeScript href="javascript:void(0);" throws warning, so there any other way to skip that warnings

查看更多
看我几分像从前
4楼-- · 2020-03-01 07:58

You should consider write method clickHappens in react component instead of writing this inline. Hope it works!

<a href onClick={(e) => {e.preventDefault(); fields.push()}}> Add Email </a>
查看更多
Luminary・发光体
5楼-- · 2020-03-01 08:01

Here's a simple solution,

  • On React class component
class App extends React.Component {
  onClick() {
    console.log('onclick..')
  }

  render() {
    return (
      <a href={void(0)} onClick={this.onClick} >Click me</a>
    )
  }
}

React is dropping the javascript:void(0) solution and the href doesn't certainly accept the empty attribute value.

Basically what react wants us to do is to use a different component, for instance a button. We can always make a button look like a link using CSS(and thus, won't contain href and the complexity to remove it's behaviour). So, instead of using an anchor tag as a button, use the button element itself. Hope it makes sense.

查看更多
虎瘦雄心在
6楼-- · 2020-03-01 08:04

add javscript:void(0):

<a href="javascript:void(0);" onClick={() => fields.push()}>Add Email</a>
查看更多
聊天终结者
7楼-- · 2020-03-01 08:13

You should call preventDefault function from onClick event like this:

class App extends React.Component {
  onClick = (e) => {
    e.preventDefault()
    console.log('onclick..')
  }
  render() {
    return (
      <a href onClick={this.onClick} >Click me</a>
    )
  }
}

You can use something like this particular to your use case:

    const renderEmails = ({ fields }) => (
      ...
      <a href onClick={(e) => {
        e.preventDefault()
        fields.push()
      }}>Add Email</a>
      ...
    )
查看更多
登录 后发表回答