Untitled
By: a guest | May 28th, 2010 | Syntax:
JavaScript | Size: 0.71 KB | Hits: 268 | Expires: Never
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="xiaojue,designsor@gmail.com">
<title>help</title>
<style>
#msg{min-width:250px;}
#msg p{font-size:12px;color:#4DA2D2;}
</style>
</head>
<body>
<div id='msg'></div>
</body>
</html>
<script>
init();
function init(){
if(localStorage.data==''){
document.getElementById('msg').innerHTML='<p>Now Loading...</p>';
setTimeout(function(){init();},50);
}else{
document.getElementById('msg').innerHTML=localStorage.data;
}
};
</script>