vue实现谷歌浏览器调起ie浏览器并打开指定页面
2022-07-08 本文已影响0人
上海_前端_求内推
特定环境下,有些页面需要用ie打开,但是vue又只能在谷歌运行,但是谷歌浏览器有不能直接调起ie,此刻就需要安装openie程序实现改功能
功能实现:
1,html
<el-button size="mini" @click="openbutton" type="primary" class="">签名</el-button>
2,js
openbutton(){
window.location.href="openIE:"+this.$baseService.openurl+"/static/SXBDemo.html?dataarr="+JSON.stringify(this.form.head)
},