reactjs useNavigate 如何设置为 target _blank
在React中,使用useNavigate无法直接实现在新标签页中打开链接的功能。useNavigate是React Router提供的一个钩子,用于在组件中进行页面导航。
如果你想要在新标签页中打开链接,可以使用原生的HTML <a> 标签,并设置target="_blank"属性。例如:
import React from 'react';
function MyComponent() {
return (
<a href="https://www.example.com" target="_blank">Open in new tab</a>
);
}
export default MyComponent;
这样点击链接时,会在新标签页中打开链接。
原文地址: https://www.cveoy.top/t/topic/iaFr 著作权归作者所有。请勿转载和采集!