up dir
/* * @title cd .. * @description up dir * @include http://* * @license MIT License */ a=location.pathname.substr(1).split('/'); a.pop(); location.pathname='/'+a.join('/');