名站网址导航为大家提供关于网站网页设计设计相关的的教程知识。
- 本篇文章具体介绍如下
具体代码如下:
function xmlhttpR(){
var xmlhttp;
if(window.XMLhttpRequest){
xmlhttp=new XMLhttpRequest();
}
else{
try{xmlhttp=new ActiveXObject("Msxml2.XMLhTTP")}
catch(e){
try{xmlhttp=new ActiveXObject("Microsoft.XMLhTTP");
}
catch(e){return null;
}
}
return xmlhttp;
这样就基本上能创建一个跨浏览器的对象了;
下面是ajax的简单运用,利用XmlhttpRequest对象完成;
具体代码如下:
var ajaxEl=new Object();
//ajaxEl是自定义的命名空间;
ajaxEl.contentLoad=function(url){
//IE浏览器下,会启用缓存,这里url加入date字段就是为了防止IE使用缓存,当然也可以使用Math.random()产生和getTime类似的效果;
url ="?date=" new Date().getTime();
this.req=null;
this.url=url;
//这个回调函数就是在数据在页面上的更新函数;
this.onload=function(){
//domEl是ID为#test的dom元素;
var domEl=document.getElementById("test");
//除了用responseText属性,也可以使用responseXml获得一张数据表;
domEl.innerhTML=this.req.responseText;
}
this.Xmlhttp(url);
}
ajaxEl.contentLoad.prototype={
Xmlhttp:function(url){
if(window.XMLhttpRequest){
this.req=new XMLhttpRequest();
}
else{
try{this.req=new ActiveXObject("Msxml2.XMLhTTP")}
catch(e){
try{this.req=new ActiveXObject("Microsoft.XMLhTTP");
}
catch(e){return null;
}
}
}
if(this.req){
var xmlR=this;
this.req.onreadystatechange=function(){
if(xmlR.req.readyState===4){
xmlR.onload.call(xmlR);
}
}
this.req.open("GET",url,true);
this.req.send(null);
}
}
}
var xmlE=new ajaxEl.contentLoad("main.php");
main.php里面,我这里设置的比较简单的示例具体代码:在页面上就会显示一个类似:now! time is:05:18:10 am 2011,这样可动态变化的时间。
具体代码如下:
echo "now! time is:".date("h:i:s a Y");
好了关于网站网页设计设计相关的这篇文章就给大家介绍到这里不明白的地方给本站留言。声明,本站内容来源于互联网,如果侵犯了你的权益请联系本站删除。,jquery 查找select ,并触发事件的实现具体代码-jquery