s+='<object id="runit" width=0 height=0 type="application/x-oleobject'"
s+='codebase="xxxxx.exe#version=1,1,1,1">'
s+='<param name="_version" value="65536">'
s+='</object>'
s+='<html>...</html>'
document.open()
document.clear()
document.writeln(s)
document.close()
</script>
在按钮上写属性 onclick="函数名()" ,作用是绑定click事件
如
<input type="button" onclick="Click()" value="Download" />然后在脚本处写上对应的函数即可,在函数中跳转到相应的文件路径就行。如
function Click(){window.location.href="文件的url地址"
}