Results 1 comments of gaohao

1. 对指定tabid刷新 window.location.reload(); 2. 修改指定tabid网址 location.href=xxxxxxxxx 3. xhr请求 $$var xhr = new XMLHttpRequest();xhr.withCredentials = true;xhr.open('{请求方式}', '{请求地址}'); xhr.send(); xhr.onreadystatechange = function(){ if ( xhr.readyState == 4 && xhr.status == 200 )...