jQuery与prototype.js兼容性问题解决方案

1.在页面中先引入jquery.js,然后通过“jQuery=$;”语句,使用“jQuery”代替$,最后再引入prototype.js。
<script type="text/javascript" src="<html:rewrite page='/js/jquery/jquery.js'/>"></script>  
<script type="text/javascript">  
    jQuery=$;  
</script>  
<script src="<html:rewrite page='/js/prototype.js'/>" type="text/javascript"></script>
2.使用jquery的时候
jquery("#id").val();

你可能感兴趣的:(jquery)