特定环境下,有些页面需要用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)
},
网友评论