ext and jquery

some day ago ,I came to ext ,there are lot of fun , whit ext ,I can make my pages very beautiful , there are a example that   integrate ext and jquery .

 

 

<!DOCTYPE HTML>[color=darkred][/color][size=xx-small][/size]
<html>
<head>
<meta charset="UTF-8" />
<title>jquery Ext JS</title>
<link rel="shortcut icon" href="http://www.extjs.com/favicon.ico" />

<script type="text/javascript" src="jquery-1.4.2.min.js"></script>// pay attention to the script inport order
<script type="text/javascript" src="ext-jquery-adapter.js"></script>
<script type="text/javascript" src="ext-all.js"></script>


<link rel="stylesheet" type="text/css" href="ext-all.css"/>
<link rel="stylesheet" type="text/css" href="xtheme-blue.css"/>

</head>
<body>
<div id="page">
<a href="#" id="wheelink">Whee Click me Click me!</a>
</div>
<script type="text/javascript">
$(function(){
  $('#wheelink').bind('click',function() {
    Ext.Msg.alert('Whee alert!', 'Thanks for clicking me, WHEE!');
  });
});
</script >
</body>
</html>

 

 

the example is in myfile.zip

你可能感兴趣的:(JavaScript,html,jquery,css,ext)