如何使用 jQuery 将文件作为文本字符串加载到某个 var 中?
所以我们有一个 /page.html
和 /folder/file.bla
。我们希望使用 jQuery 将文件内容作为文本字符串加载到某个 var 中,并在加载完成后调用一些函数。这样的事该怎么办呢?
So we have a /page.html
and /folder/file.bla
. We want to load that file contents as text string into some var using jQuery and call some function when we are done loading. How to do such thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 $.AJAX 获取文件:
Get the file using $.AJAX :
作为第二个参数传递给
get()
函数的函数 将在从外部 URL 加载数据后运行。The function you pass as the second argument to the
get()
function will be run once the data has been loaded from the external URL.文件是什么类型?
如果它是纯文本,那应该不是问题:)
What type is the file?
If its pure text, it shouldn't be a problem :)