这个路径怎么解决不了
比如有一张图片在E:\ABC\123\QA.jpg.有一个程序在E:ABC\236\ftx.exe
为什么我做了一个HTA文件在E:\ABC文件夹下background="123\QA.jpg"可以找到路径。
而这个<input type="button" value="FTX" onclick="open_tool('ftx_tool')">
<script language="javascript">
function open_tool(tem_key)
{
var tem_href;
var file_path;
var tem_file;
tem_href=document.location.href;
tem_file=location.href.match(/\/([^\?/]*)(\?|$)/)[1];
file_path=tem_href.replace(tem_file,"");
if(tem_key=="ftx_tool"){
var strPath=file_path + "236\ftx.exe";}
就找不到路径了是怎么的会事?