react實現跳躍頁面的方法:1、透過「import { Button } from 'antd';」引入button元件;2、在button元件裡面寫onclick;3、在render外面寫方法內容為「tiaozhuan(){window.location.href=""}」;4、使用link路由;5、使用a標籤進行跳轉即可。
本教學操作環境:Windows10系統、react18.0.0版、Dell G3電腦。
react怎麼實現跳轉頁面?
react專案實作頁面跳轉
更新:
useNavigate()的使用
import { useNavigate } from 'react-router-dom'; const navigate = useNavigate(); navigate(-1)//适用于返回上级页面 navigate('/router');//也可直接加路径
1.使用button元件
先引用
import { Button } from 'antd';
然後在button元件裡面寫onclick,在render外面寫方法內容
class App extends Component { tiaozhuan(){ window.location.href="http://www.baidu.com" } render(){ return ( <> <div id="zhu" style={{ width: 400, height: 400 }}></div> <div id="zhe" style={{width: 600,height:400}}></div> <p>123 </p> <Button onClick={this.tiaozhuan}>跳转页面</Button> </> ); } }; export default App;
2.使用link路由
#首先引用
import { Link } from 'umi';
然後在這個路由檔案裡加上你要跳到頁面的路由
#接著在return裡面寫這句話就行了。
<Link to="/test">跳转页面</Link>
3.最簡單的是a標籤
<a href="#">跳转页面</a>
推薦學習:《react影片教學》
以上是react怎麼實現跳轉頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!