Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ブラウザのステータス バーのコンテンツを Web ページに表示できますか? ファイルをアップロードしているときと同様に、「リクエストを送信中」、「5% をアップロード中」などのステータスが表示されます。これを Web ページに直接表示できますか?
あなたの最善の策は次のとおりだと思います:
window.status
...ジャバスクリプトで。しかし、明らかにほとんどのブラウザはこれをサポートしていません。
次のようにします。
var element = document.getElementById('someelement'); setInterval(function() { element.innerHTML = window.status; }, 50);
ファイルをアップロードしたら、完了したら間隔をクリアします。