仅在chrome浏览器中,文本数据不会通过jquery代码绑定到html元素

时间:2013-05-21 09:59:31

标签: javascript jquery google-chrome

我正在尝试使用特定的元素id通过jquery将文本数据绑定到html元素,但数据不仅仅在chrome浏览器中获取绑定,相同的功能在Firefox和IE等其他浏览器中正常工作。以下是我的代码,请告诉我解决方案,如果你有。

var reqSegment1 = $('Segment', FlightReq);

$("#spOrgCity").html($('DepartureLocation', reqSegment1[0]).text());
$("#spDestCity").html($('ArrivalLocation', reqSegment1[0]).text());

if (tripType == "oneway") {
    $("#onewaydiv").attr("style", "display:block;");
    $("#rnddiv").attr("style", "display:none;");
}
else {
    $("#onewaydiv").attr("style", "display:block;");
    $("#rnddiv").attr("style", "display:block;");
}

以上代码适用于除Chrome之外的其他浏览器。如果它与其他浏览器一起使用,我无法调查实际问题是什么。是jquery冲突问题还是别的什么。

0 个答案:

没有答案