正文 379字数 47,777阅读

$(this).children("a") 或 $(this).find("a")
Run code
Cut to clipboard

    $('.tel').click(function(){ var n=$(this).attr('href'); n=n.replace('tel:',''); $(this).text(n); $(this).css('color','Orange'); });
    Run code
    Cut to clipboard