URL Parser

码农软件 · 软件分类 · 其他jQuery插件 · 2020-01-12 15:27:28

软件介绍

Parses URLs and provides easy access to information within them, such as the protocol, host, port, the segments that make up the path and the various query string values. The parser is based on the Regex URI parser by Stephen Levithian - http://blog.stevenlevithan.com/archives/parseuri.

// Get the domain name (host) from the current page URI
jQuery.uri.attr("host");

// Get the query string value for 'item' for the current page
jQuery.uri.param("item");

// Get the second segment of the URI of the current page
jQuery.uri.segment(2);

// Get the protocol of a manually passed in URL
jQuery.uri.setUri("http://allmarkedup.com/").attr("protocol") // returns 'http'

本文地址:https://codercto.com/soft/d/23226.html

算法:C语言实现

算法:C语言实现

塞奇威克 / 机械工业出版社 / 2006-9 / 69.00元

本书是Sedgewick彻底修订和重写的C算法系列的第一本。全书分为四部分,共16章,第一部分“基础知识”(第1-2章)介绍基本算法分析原理。第二部分“数据结构”(第3-5章)讲解算法分析中必须掌握的数据结构知识,主要包括基本数据结构,抽象数据结构,递归和树。一起来看看 《算法:C语言实现》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换