避免在我的jsf应用程序中发生jquery冲突

时间:2010-12-16 09:27:34

标签: java jquery jsp jsf richfaces

我在jsf项目中加载jquery。我只加载标题部分。

在加载jquery之前,链接和菜单操作完美无缺。 (不加载jquery)

但是,在我加载jquery后,链接操作和菜单操作都无效。

我使用 jQuery.noConflict(); $ .noConflict(); 但没有更多改进。

实际上,为什么在加载jquery时会出现此问题。

 <head>  
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">              
    <a4j:loadScript src="../../scripts/jquery-1.3.2.min.js"/>          

     <script type="text/javascript">  
             jQuery.noConflict();                   
      </script>     

</head>

我也使用 jquery-1.4.2.min.js 。但不能正常工作我的菜单和链接动作。

我为此付出了更多努力。
我希望,在这里我会得到一些解决方案 帮帮我 谢谢你宝贵的时间。

1 个答案:

答案 0 :(得分:2)

我得到了答案。

   <head>  
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">      

    <a4j:loadScript src="resource:///org/richfaces/renderkit/html/scripts/jquery/jquery.js" />                 
    <a4j:loadScript src="../scripts/highcharts.js"/>  

    <script type="text/javascript">  

     jQuery.noConflict();  

     jQuery(document).ready(function()  
     {  
          ....  
          ....  
     });  

 </script>  </head>