文件上传时如何显示状态消息?
有人可以提供一种简单的方法来使用JavaScript在文件上传时显示状态消息,而在文件上传时淡出吗?
回答:
<style type="text/css"> #loadingMessage {
position: absolute;
top: WHEREVER;
left: WHEREEVER;
z-Index: 100;
}
</style>
<div id="loadingMessage" style="visibility:hidden;">This page be uploading!</div>
<form id="yourForm"> ... </form>
<script>
document.getElementById("yourform").onsubmit = function() {
document.getElementById("loadingMessage").visibilty = "visible";
return true;
};
</script>
以上是 文件上传时如何显示状态消息? 的全部内容, 来源链接: utcz.com/qa/397731.html