extjs 4跟jquery其实还能很好结合的,下面是一个简单的方法和例子:
1 分别下载它们
2 例子中演示了EXT JS和JQUERY的简单调用 货运专家


   
<html>
<head>
    <title>Ext JS 4 + JQuery</title>
 
    <link rel="stylesheet" type="text/css" href="ext4/resources/css/ext-all.css" />
 
    <script type="text/javascript" src="jquery/jquery-1.6.2.min.js"></script>
    <script type="text/javascript" src="ext4/ext-all.js"></script>
</head>
<body>
    <script type="text/javascript">
    Ext.onReady(function() {
        Ext.Msg.alert('Alert',$('#divId').text());
 
    });
    </script>
    <div >Using Ext JS 4 + JQuery</div>
</body>
</html>

相关文章:

  • 2021-12-17
  • 2021-07-31
  • 2022-12-23
  • 2022-01-19
  • 2022-12-23
  • 2022-01-01
  • 2021-09-13
猜你喜欢
  • 2021-07-24
  • 2022-01-19
  • 2021-10-29
  • 2022-12-23
  • 2022-12-23
  • 2022-02-26
  • 2021-11-08
相关资源
相似解决方案