1、點(diǎn)擊返回上一張頁(yè)面:
<a class="icon-back" href="javascript:history.go(-1)"></a>
2、點(diǎn)擊跳轉(zhuǎn)到指定頁(yè)面:
$('.btn').click(function(){
window.location.;
})
3垦梆、頁(yè)面一加載就跳轉(zhuǎn):
window.location.href='http://192.168.10.129:8020/helpCenter/html/qa.html';
window.self.location='http://192.168.10.129:8020/helpCenter/html/qa.html';
window.top.location='http://192.168.10.129:8020/helpCenter/html/qa.html';
4、點(diǎn)擊跳轉(zhuǎn)到拼接地址:
$('.btn').click(function(){
window.location.href = 'http:'+'//www.baidu.'+'com';
})
5、點(diǎn)擊跳轉(zhuǎn)到上一級(jí)目錄下的某個(gè)頁(yè)面
window.location.href = "../childTwo/registerConfirm.html";