0

我最近被告知,我写的一个例程在 IE 中不起作用。我知道它已经工作了很长一段时间,所以这个问题可能与较新版本的 IE 有关。代码是:

$(document).ready(
  function() {
    var aryRSS = new Array(5);

    $.get(
      'slider_info.xml',
      function($xml) {
        var html = "";
        var i = 1;
        $($xml).find('item').each(
          function() {
            var item_link  = $(this).find('item_link').text();  // The three pieces of information requested within the XML file
            var item_title = $(this).find('item_title').text().replace(/'/g, '''); 
            var item_image = $(this).find('item_image').text();
            // Build list items for slider
            html += "<li id='hp_images_nav" + i + "' title='" + item_title + "'";
            if (i == 1) { html += " class='hp_images_navSelected'"; }
            html += ">" + i + "</li>";
            // Build title, link, and image
            aryRSS[i] = "<h2><a href='" + item_link + "'>"
            aryRSS[i] += item_title + "</a></h2>"; // Add link and title for display outside rotation
            aryRSS[i] += "<a href='" + item_link + "'><img src='" + item_image + "' alt='" + item_title + "' title='Click to view article' /></a>"; // Extract the image from the description
            i++;
          }
        )
        $('#remove_this').remove(); // Remove empty list item, which exists for purpose of validation
        $('#hp_images_nav_items').append(html); // 
        $('#hp_images_nav').append('<div id="stop_start">||</div>');
        $('#hp_images').append(aryRSS[1]); // Create initial item
      },
      'xml'
    );
  }
)

我得到一个有效的 XML 文件并使用它的内容来构建 HTML。除了 IE(我使用的是 IE9,我相信这也是 IE8 的问题)之外,这在所有方面都像冠军一样工作。

我已经尝试了各种各样的事情并且没有想法。这是我真正需要解决的问题,因此任何想法都将不胜感激。

干杯 -

乔治

4

1 回答 1

1

您在该行缺少一个分号

aryRSS[i] = "<h2><a href='" + item_link + "'>"

许多浏览器会处理这个问题,但 IE < 9 不会。

于 2013-01-14T20:48:44.993 回答