LoginSignup
104
105

More than 5 years have passed since last update.

jQueryでURLをパースする

Last updated at Posted at 2013-08-21

メモ。

var url = 'http://www.youtube.com/watch?v=Q16KpquGsIc&gl=JP&hl=ja#comment';

var elm = $('<a>', { href:url } )[0];

console.log(elm.hostname);
//->www.youtube.com

console.log(elm.pathname);
//->/watch

console.log(elm.search);
//->?v=Q16KpquGsIc&gl=JP&hl=ja

console.log(elm.hash);
//->#comment
104
105
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
104
105