摘要:
function htmlEscape(text){ return text.replace(/["&]/g, function(match, pos, originalText){ switch(match){ case "":return ">"; case "&":return "&"; case "\"":return """; } }... 阅读全文
摘要:
camelize方法,转换为驼峰命名风格: underscored方法,转换为下划线风格: 阅读全文
摘要:
206 Partial Content 服务器已经成功处理了部分 GET 请求。类似于 FlashGet 或者迅雷这类的 HTTP下载工具都是使用此类响应实现断点续传或者将一个大文档分解为多个下载段同时下载。 该请求必须包含 Range 头信息来指示客户端希望得到的内容范围,并且可能包含 If-Ra 阅读全文