我有一个javascript页面,在使用
加载时提交
<body onload="javascript:document.Form.submit()">
<form action="myUrl" method="POST"....etc etc>
</form> </body>
现在我想在加载时插入一个旋转轮或沙漏,因为它需要几秒钟才能调用
在上面的'myUrl'服务。
我该怎么做?
这样的事情没有解决它。
<form onsubmit="document.getElementById('loading').style.display = 'block'" action="myUrl">
<img id='loading' src='spinning-wheel.gif' style="display:none;"/> /<form>
有什么想法吗?