我正在使用LightBox2獲取簡單的圖片庫。我設法使它工作,但現在它與我從我的頁面引用的另一個JavaScript腳本文件衝突。lightbox2與腳本衝突
我的腳本使用$(document).ready(function() {
我不知道這是否是相關或不但是我知道,在一個點瀏覽器的調試器抱怨它。
對此有何見解?
============================================== ============== 我包含了部分產生錯誤的代碼。雖然這工作正常。
var currs = {};
jQuery.noConflict();
jQuery(document).ready(function() {
var marketTypeSel = document.getElementById("selMarketType");
var propertyTypeSel = document.getElementById("selPropertyType");
var propertyStatusSel = document.getElementById("selPropertyStatus");
var zoneSel = document.getElementById("selZone");
var locSel = document.getElementById("selLocalities");
var currSel = document.getElementById("selCurrency");
var priceFromSel = document.getElementById("selPriceFrom");
var priceToSel = document.getElementById("selPriceTo");
//var data = {};
marketTypeSel.length = 0;
propertyTypeSel.length = 0;
propertyStatusSel.length = 0;
zoneSel.length = 0;
locSel.length = 0;
currSel.length = 0;
jQuery.ajax({
type: "POST",
url: "/Search/LoadInitSearchParameters",
//data: data,
dataType: "json",
success: function (result) {
它在所有瀏覽器中是否存在衝突?手段通常在IE中發生問題。 – 2012-03-16 09:35:29
是的所有瀏覽器:/ – Jonny 2012-03-16 09:36:51
我同意@devtut。你試過jQuery.noConflict()嗎? – 2012-03-16 09:39:43