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.
我正在尝试为 Twitch 使用 Chatty 软件以检索聊天日志,但它使用以 # 开头的文件名保存聊天日志,我无法更改它。因此,$.get 不是文件,而是返回文档本身,即我调用它的页面。
$.get('#chatlog.log', function(data){ console.log(data); })
是否有任何可行的解决方法?
感谢您的时间。
只需使用
$.get('%23chatlog.log', function(data){ console.log(data); })
%23将哈希符号编码为名称的有效部分。在其他情况下#,被理解为 url 中的分隔符(片段)
%23
#