この行
jq("#description" + tourId).html('<b>Opis: </b> '+ data);
IE、Firefox、Opera で正常に動作します。
でもこれは
jq("#images" + tourId).html('<img src=\"img\\gbflag.png\"/>');
IE でのみ動作します。Firefox と Opera では画像が表示されません。なぜなのかご存知ですか?
これは私のコードの残りの部分です:
<script type="text/javascript">
var jq = jQuery.noConflict();
function showImages(tourId) {
jq(function() {
jq.post("/TourWebSpring/tourImages.html",
{tourId: tourId},
function(data) {
...
...
jq("#images" + tourId).html('<img src=\"img\\gbflag.png\"/>');
});
});
}
function showDetails(tourId) {
jq(function() {
jq.post("/TourWebSpring/tourDetail.html",
{tourId: tourId},
function(data) {
...
jq("#description" + tourId).html('<b>Opis: </b> '+ data);
});
});
}