如何使用,用不用装插件,应用JAR包什么的。。???

解决方案 »

  1.   

    JQUERS?这个东西我没见过。更没用过。
    是想说jquery吗?
      

  2.   

     e n ..  对的。 是JQUERY  打错字了 。。
      

  3.   

    不用JAR包  需要一个JQuery.JS文件
      

  4.   

    额 那是个js文件 直接引入jquery.js就可以了
      

  5.   

    比如引入 http://files.cnblogs.com/iloveu/jquery.js?ver=1.4.2
      

  6.   


    http://bbs.jquery.org.cn/用jquery首先要引入jquery的js库<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
      <head>
        <title>jqtable.html</title>

        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
        <meta http-equiv="description" content="this is my page">
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
    $(function () {
    alert("Hello boy!");
    });
    </script>
      </head>
      
      <body>    
      </body>
    </html>
    很简单吧