我有使用2個jqueries之間的衝突問題,我已經檢查了jQuery.noConflict()thingy但是因爲我有點新手入它,我不知道該怎麼去用它做,所以如果你能給我一隻很棒的手。兩個腳本之間的jquery衝突
看來,「jquery-2.1.4.min.js」使「jquery-ui-1.8rc1.custom.min.js」停止工作,所以不會收到彈出窗口。
在此先感謝。
代碼:
<script src="/myjs/js/jquery-ui-1.8rc1.custom.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
var mensaje = "<%= mensaje%>";
var $dialogDel = $('<div></div>')
.html(mensaje)
.dialog({
autoOpen: false,
title: 'Alert',
buttons: { "Ok": function() { $(this).dialog("close"); } }
});
if(mensaje != ""){
$dialogDel.dialog('open');
}
});
function add(){
var archivo = document.adddoc.add_archivo.value;
extensiones_permitidas = new Array(".htm", ".html", ".txt", ".doc",".xls",".zip",".pdf",".jpg",".rar",".docx",".xlsx");
extension = (archivo.substring(archivo.lastIndexOf("."))).toLowerCase();
permitida = false;
for (var i = 0; i < extensiones_permitidas.length; i++) {
if (extensiones_permitidas[i] == extension) {
permitida = true;
break;
}
}
if (!permitida) {
alert("The extension is not correct");
}else{
var $dialog = $('<div></div>')
.html('Doc beeing uploaded, please wait.')
.dialog({
autoOpen: false,
title: 'Alert'
});
$dialog.dialog('open');
$('#adddoc').submit();
}
}
</script>
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="/myjs/js/jquery.ezdz.min.js"></script>
<script>
$('[type="file"]').ezdz({
text: 'drop a file',
validators: {
maxWidth: 100,
maxHeight: 200
}/* ,
reject: function(file, errors) {
if (errors.mimeType) {
alert(file.name + ' must be an image.');
}
if (errors.maxWidth) {
alert(file.name + ' must be width:600px max.');
}
if (errors.maxHeight) {
alert(file.name + ' must be height:400px max.');
}
} */
});
</script>
你有沒有嘗試在jQuery UI之前包括jQuery? –
你可以製作一個JSFiddle嗎?我們會看到,如果只有你有這個問題。 – Seblor
@ user3272243好的。你有沒有考慮使用jQuery UI的更新版本,因爲你使用最新的(我認爲?)版本的jQuery本身 –