MrRaindrop / httpurl

lib-httpurl @mtblibs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

httpurl

basic url methods.

usage

demo

var url = new lib.httpurl('//m.taobao.com?ttid=201301@taobao_iphone_3.4.5');
console.log(url.toString());
// http://m.taobao.com?ttid=201301@taobao_iphone_3.4.5

attributes and methods.

  • protocol
  • username
  • password
  • hostname
  • port
  • pathname
  • search
  • hash
  • params

params demo

url.params.ttid;
// 201301@taobao_iphone_3.4.5

url.params.ttid = '12tx0065';
// 12tx0065

url.params = {ttid:'12tx0065', refid:'qwer'};
console.log(url.search)
// ttid=12tx0065&refid=qwer

About

lib-httpurl @mtblibs

License:MIT License


Languages

Language:JavaScript 100.0%