js脚本怎么调用一个.html的文件

2024-12-01 14:46:42
推荐回答(2个)
回答(1):

应该是目录结构不对,打个比方:
你的当前文件是
/index.html
你的js是
/js/fun.js
你需要调用的是
/bookPlay/index.html

这个时候你需要以/index.html为当前位置
调用的话就是window.open('bookPlay/index.html');

或者更安全的用绝对路径
window.open('/bookPlay/index.html');

回答(2):

路径不对,改用绝对路径好了啊