0

我已经构建了一个页面,它从数据库动态加载数据并使用 jQuery 向页面添加 html 标签和类

html是

    <fieldset>
        <legend>msgs</legend>
            <div id="maya">
                <!--Here will come the maya msgs-->
            </div>
    </fieldset>
<fieldset>
    <legend>recommendation</legend>

    <div id="recommendText"></div>

    <div id="rate" class="rating">
        <div id="star1"></div>
        <div id="star2"></div>
        <div id="star3"></div>
        <div id="star4"></div>
        <div id="star5"></div>
    </div>
</fieldset>

js是

 date = '<label id="tbDate" for="tbMessage" class="label_info">'+data[i++]+'</label>';
            link = '<label id="tbMessage" class="label_info_text" ><a href="'+data[i++]+'" target="_blank">'+data[i++]+'</label>';

      $("#maya").append('<div class="label_maya_info">'+date+link+'</div>'+clear);
      $('#stars1').addClass("star");
     $('#stars2').addClass("halfStar");

它适用于 FF 和 chrome,但不适用于 IE8。

页面链接是http://www.s-maof.com/PRO/index.php?fkapp=9 (在搜索框中查找“649012” - 只有一个)。

高图表也不起作用(仅在 IE 上)。

谢谢。

4

1 回答 1

0

谢谢大家,我想通了。问题不在于 jquery。它的语法是:

link = '<label id="tbMessage" class="label_info_text" ><a href="'+data[i++]+'" target="_blank">'+data[i++]+'</a></label>';  //added closing </a>

addClass 不起作用,因为我没有正确“css”这些元素。

于 2012-07-18T10:33:00.420 回答