0

我正在使用以下代码解析一个 html 页面:

function mealSearch() {
    $.get('http://www.season-hof.de/speisekarte.html', function(html){
       html = $(html.replace(/<img[^>]*>/g,"")).find("div.inhalt h2");
        $("#mealResults").html(html);
    });
}

上的文字.../speisekarte.html粗体显示

是否可以正常解析文本?

4

1 回答 1

0

听起来您为#mealResults 设置了一些粗体的CSS。如果没有,请将#mealResults 的 CSS 设置为 font-weight:normal。

于 2013-06-02T13:22:47.723 回答