Jquery table 追加 href 电话

Jquery table append with a href tel

我显示了用户 gsm 号码,但我想将其更改为 callable.But 现在我应该怎么做?

      $("#infoList").append("<tr><td><img src='"+urlIMG+"' height='50' width='50'>
</img></td><td> <a href="'tel:item.GSM'" >'+item.GSM+'</a> </td> </tr>");

您的代码中存在一些语法错误

js代码:

 $(document).ready(function () {
        var item = {
            GSM: "223432"
        };
        var urlIMG = "https://png.icons8.com/metro/1600/phone.png"
        $("#infoList").append("<tr><td><img src='" + urlIMG + "' height='50' width='50'></img></td><td> <a href='tel:" + item.GSM + "'>" + item.GSM + "</a> </td> </tr>");

    });

代码:https://codepen.io/peker-ercan/pen/xywWVK