ExtJs版-helloworld

 开始学习extjs。。。搞了半天的spket代码提示,没成功,希望得到高手指点。。。呜呜。。

项目结构图:


ExtJs版-helloworld


 代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>the first demo for extjs</title>

<link rel="stylesheet" type="text/css" href="../extjs-4.1.1/resources/css/ext-all.css">
<script type="text/javascript" src="../extjs-4.1.1/ext-all.js"></script>
<script>
	Ext.onReady(function(){
		Ext.MessageBox.alert('helloworld','Hello World.');
	})
</script>
</head>
<body>

</body>
</html>

 效果截图:


ExtJs版-helloworld

你可能感兴趣的:(demo,ExtJs)