java – 在我的jsf应用程序中避免jquery冲突
作者:互联网
我在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.但不能正常工作我的菜单和链接动作.
我为此付出了更多努力.
我希望,在这里我会得到一些解决方案.
帮我.
谢谢你宝贵的时间.
解决方法:
我得到了答案.
<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>
标签:richfaces,java,jquery,jsf,jsp 来源: https://codeday.me/bug/20191002/1841640.html