文件名是变化的,应该用变量来代替它吧,怎么能直接用file1呢。
我试着把文件名作为变量放到网址里,新的网址命名为变量updatefile,然后用
<a href="<%=updatefile%>" target="_blank" id="download_btn" class="btn"></a></p>
结果解析出来的是webserver的地址(http://192.168.0.1/)
如果在updatefile中去掉http://,写成
<a href="http://<%=updatefile%>" target="_blank" id="download_btn" class="btn"></a></p>
结果解析出来的网址只有http://,提示错误的URL。