由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
BuildingWeb版 - lagoona (白头鹰) 或各位高手请帮忙:关于AJAX 中加入“Pleas wait... ” message
相关主题
请大家帮忙看一下:关于AJAX 中加入“Pleas wait... ” message用getURL+DOM能不能算ajax
[转载] Ajaxhelp me urgent!
protopage with AJAXAnybody using prototype.js?
Ajax-based IM: meeboWritely网站设计语言
google地图问题how to do this?
google mail问题HTML 问题一个。
online calendar 问题请教:JavaScript怎么复制一个node(含子节点)? (转载)
A collection of AJAX-based apps here网页设计问题
相关话题的讨论汇总
话题: xmlhttp话题: lagoona话题: 头鹰话题: ajax话题: pleas
进入BuildingWeb版参与讨论
1 (共1页)
b*h
发帖数: 353
1
请问lagoona (白头鹰),可否详细解释一下如何用这个onreadystatechange ?
我是新手,能否请lagoona (白头鹰)或其他朋友给我一个inner page中加入“Pleas
wait... ” message的例子。
请看我上周的帖子参考我的问题:
http://www.mitbbs.com/article_t/BuildingWeb/31160490.html
多谢了。
o***s
发帖数: 31
2
这个坛子缺乏助人为乐的优良作风啊,看来还得老朽伸把手,呵呵。
Your javascript code should not embed directly in the html text as it will
be loaded once at page loading time. Rather, you need
to design it as event based. Put your js code in a function like this:
function onButtonClicked()
{
// make please wait div visible
var div = document.getElementById('waitdiv');
div.style.display = 'block';
// make your ajax call, and in the ajax function, set waitdiv display back
to 'none'
ajax.call(...);
return false;
}
And
l*****a
发帖数: 166
3
how about this one?