0

代码如下。照原样,当 Chrome 调试器到达“result.push(...”时,它在崩溃之前永远不会回来。但是如果我注释掉“result.push(...”并取消注释“alert(.. .”,它运行良好,即它向我显示了我的“divedit” div 中的每一行,并且它永远不会崩溃。我很难过。

TIA

function getDivEditLines(divedit) {
    var result = new Array();
    $(divedit).find("div:not(:has('div'))").each(function(){
        result.push($(this)[0].innerText);
        //alert($(this)[0].innerText);
    });
    return result;
}
4

1 回答 1

0

如果您使用 jquery 为什么不使用text()

var getDivEditLines = function ($divedit) {
    var result = [];
    $divedit.find('div')
        .filter(function () {
            return !$(this).find('div').length;
        })
        .each(function () {
            result.push($(this).text());
        });
    return result;
}
于 2012-05-11T00:58:05.333 回答