Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从我的桌面加载一个页面,我们将其命名为loadme.htm.
loadme.htm
现在我有一个index.htm文件,它将加载loadme.htm.
index.htm
index.htm为什么我从桌面打开时无法加载?一些 jQuery 函数在这里工作,如.trim(),.show()等。但如果我把它放在 WAMP 上,它会成功加载。
.trim()
.show()
编辑:这就是我加载“loadme.htm”的方式 $.("#content").load("loadme.htm");
$.("#content").load("loadme.htm");
我假设您已经使用 jquery ajax 加载函数来加载您的文件。除非您为此使用 http 调用,否则它将不起作用。当您从桌面打开时,它正在使用文件协议并且失败。其他 jquery 函数,如 trim()、show() 之所以有效,是因为它对协议类型没有任何依赖,并且浏览器本身可以处理这些调用。