📜  jqerrt 从字符串中获取所有 img alt - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:25.831000             🧑  作者: Mango

代码示例1
$("#mycontent img").each(function () {
        var altText = $(this).attr("alt");
        $(this).replaceWith(altText);
    })