uniapp开发app富文本a标签跳转外部链接
【代码】uniapp开发app富文本a标签跳转外部链接。
·
使用
<u-parse class="uni-dialog-content-text" v-if="mode === 'base'" :content="content"
@navigate="navigate"></u-parse>
引入组件
import uParse from '@/components/u-parse/u-parse.vue';
export default {
components: {
uParse
},
}
监听点击链接跳转
/**
* 跳转
*/
navigate(href, e) { //事件:点击富文本里的链接
// #ifdef APP-PLUS
console.log('跳转')
plus.runtime.openURL(href) //app中跳转外部链接
// #endif
// #ifdef H5
window.location = href; //H5或者用window.open吧
//跳转外链只能h5,公众号可以实现,小程序不支持跳转外链
// #endif
},
更多推荐
已为社区贡献7条内容
所有评论(0)