以#开头的文件名出现问题

时间:2015-09-19 16:01:55

标签: jquery twitch mirc

我正在尝试使用Chatty的Twtty软件来检索聊天记录,但是它使用以#开头的文件名保存了chatlog,我无法改变它。因此,$ .get不是文件而是返回文档本身,即我调用它的页面。

   $.get('#chatlog.log', function(data){
        console.log(data);
    })

对此有没有可行的解决方法?

感谢您的时间。

1 个答案:

答案 0 :(得分:2)

只需使用

$.get('%23chatlog.log', function(data){
     console.log(data);
 })

%23将哈希符号编码为名称的有效部分。在其他情况下,#作为url

中的分隔符(片段)