这套题还不错,感兴趣的猿可以试一试:前端开发工程师

1、基础地址(固定)

let baseUrl = 'http://www.xdocin.com/xdoc?_func=to&_format=html&_cache=1&_xdoc='

2、自己上传的word地址,必须公网可访问,并且必须使用encodeURIComponent编码

let fileUrl = https://pan.baidu.com/s/1-2aDtACJZZCIaH9ls51izQ.doc

3、使用window.open打开

let baseUrl = 'http://www.xdocin.com/xdoc?_func=to&_format=html&_cache=1&_xdoc='
let url = encodeURIComponent(fileUrl)
window.open(baseUrl + url, '_blank')