js 动态的给input 添加 超链接

取到input的对象,设置input内容的字体颜色和下划线

$("td[cellname='type'] input").css({'color':'#0000FF','text-decoration':'underline'});

给input加上onclick事件
      document.getElementById('inputId).οnclick=function(){ 

       var tableUrl =  'https://www.baidu.com';
        openWin(tableUrl);

};

function openWin(url) {
        var a = document.createElement("a");
        a.setAttribute("href", url);
        a.setAttribute("target", "_blank");
        a.setAttribute("id", "camnpr");
        document.body.appendChild(a);
        a.click();
}

你可能感兴趣的:(js)