首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > vbScript >

求查询数据前等待代码?解决方案

2012-02-23 
求查询数据前等待代码?我想做一个查询记录之前做一个等待的提示,如果查询记录都取出来了,就显示的功能!在

求查询数据前等待代码?
我想做一个查询记录之前做一个等待的提示,如果查询记录都取出来了,就显示的功能!

在一个页面里,头部上有个查询的条件form,下面有个<iframe name="aaa" width="100%" height="100%"></iframe >

头部的查询条件是直接提交到下面的iframe里。意思是iframe是显示查询的记录数。在iframe里我想做一个等待的功能,等待的图标如下:


当提交的数据都取出来了之后就显示查询出来的数据。

在线等,谢谢大家和高手们了!!

麻烦把代码列出来,谢谢!

[解决办法]
a.html

HTML code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>Untitled Document</title><script type="text/javascript">function reloadview(){  var tarCon=document.getElementById('resultview');  var tarURL=tarCon.getAttribute('src');  var tarWord=escape(document.getElementById('keywords').value);  tarCon.src=(tarURL.indexOf('=')==-1)?tarURL+"?keywords="+tarWord:tarURL.replace(tarURL.substring(tarURL.indexOf('=')+1),tarWord);  tarCon.contentWindow.location.reload();}</script></head><body><div>    <form name="form2" action="#">        <input type="text" name="keywords" id="keywords" size="20" />        <input type="button" value="post" onclick="reloadview();"/>    </form></div><iframe src="a.asp" width="500" height="auto" id="resultview" name="resultview" style="border:1px solid #fff;"></iframe></body></html> 

热点排行