Just some sharing about java open source and life

First Ajax Example

日期:2009-06-22 19:23 | 作者:JavaChen | 分类目录:DWR
87 views

hello.html页面:

< !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

	
		

		
	
	
My first ajax program

hello.js文件:

function init(){
	var hello = document.getElementById("hello");
	var empty = document.getElementById("empty");

	hello.className = "declared";
	empty.innerHTML = "Programmed ajax string";
	empty.className = "programmed";
	empty.style.border = "solid green 2px";
	empty.style.width = "200px";
}
@CHARSET "UTF-8";
.programmed {
	color: red;
	font-family: system;
	font-style: bold;
	font-size: 24px
}

.declared {
	color: blue;
	font-family: arial;
	font-style: normal;
	font-size: 36px
}

效果图:
sendpix0

作者:JavaChen | 分类目录:DWR | 标签:
回到顶部

无觅相关文章插件,快速提升流量