js脚本怎么调用一个.html的文件
js脚本怎么调用一个.html的文件
日期:2013-05-31 10:59:34 人气:1
应该是目录结构不对,打个比方:
你的当前文件是
/index.html
你的js是
/js/fun.js
你需要调用的是
/bookPlay/index.html
这个时候你需要以/index.html为当前位置
调用的话就是window.open('bookPlay/index.html');
或者更安全的用绝对路径
window.open('/bookPlay/index.ht