不能申請事件到另一個頁面。
例如,您可以通過GET參數通過這個用戶名:
window.location.replace("http://www.example.com/access/login/?username=" + "xxxx");
然後,在access/login/
頁面,您可以使用服務器端語言插入此username
。例如,使用PHP:
<input type="text" id="username" name="username" value="<?php echo $_GET['username']; ?>"/>
JavaScript可以使用GET參數以及工作,但它是更好的主意,在服務器端做到這一點。如果你沒有任何服務器端語言,你可以做到這一點使用JS:
var query = window.location.search.substr(1).split('=');
if (query.length === 0) return; // no username argument
if (query.length === 2 && query[0] === 'username') {
document.getElementById('username').value = query[1];
}
我的解決方案是絕對不是最好的一個,它只是舉例提供。你可以用你的,更優雅和方便的方式做到這一點。
爲什麼你需要填充用戶名? –
我需要與其他人分享我的用戶名和密碼 – user252718