“Tautan Bereaksi” Kode Jawaban

Tautan dalam bereaksi

import {Link} from 'react-router-dom'
<Link to="/">Home</Link>
<Link to="about">About</Link>
Shirshak kandel

Tautan Bereaksi

//Go to link and refresh the page
<a onClick={() => {window.location.href="/something"}}>Something</a>
Zarden

Tag tautan bereaksi

<Link to={`/users/${user.id}`} activeClassName="active">{user.name}</Link>
// becomes one of these depending on your History and if the route is
// active
<a href="/users/123" class="active">Michael</a>
<a href="#/users/123">Michael</a>

// change the activeClassName
<Link to={`/users/${user.id}`} activeClassName="current">{user.name}</Link>

// change style when link is active
<Link to="/users" style={{color: 'white'}} activeStyle={{color: 'red'}}>Users</Link>
2 Programmers 1 Bug

Jawaban yang mirip dengan “Tautan Bereaksi”

Pertanyaan yang mirip dengan “Tautan Bereaksi”

Lebih banyak jawaban terkait untuk “Tautan Bereaksi” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya