오락기/js

location

문방구앞오락기 2017. 4. 4. 14:12

    console.log(location.href);

     console.log(location.protocol);

     console.log(location.host);

     console.log(location.serch);



http://localhost:8880/test/1/?id=1#hash


http -> protocal

localhot -> host

8880  -> port

/test/1 -> pathname

?id=1 -> search

#hash -> hash


변경도 가능


location.href = 'http://google.com/'

location.reload();