当我添加以下脚本时,它会影响项目的其他功能(Spring 应用程序)
<script type="text/javascript" src="${ctx}/js/jquery-1.3.2.min.js"></script>
我的代码
<script type="text/javascript" src="${ctx}/js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="${ctx}/js/easy.notification.js"></script>
<script type="text/javascript">
$.noConflict();
$(function() {
$("input[type='text']").blur(function() {
if (this.value === '') {
$.easyNotificationEmpty('Warning : You left this field empty !');
} else {
$.easyNotification('Saved Successfully !');
}
})
});
</script>
我怀疑是因为冲突jquery-1.3.2.min.js
我试过$.noConflict();
了,但没有得到想要的结果。
请帮我解决这个问题,在此先感谢。