将动态HTML文本作为可点击链接

时间:2019-02-05 19:11:22

标签: javascript html5 hyperlink website-metrics

<script>
    $('#getFileData').click(function (e) {

        e.preventDefault();
        hashStore.getFileHashes.call(document.getElementById("index").value, function (err, result2) {

        if (err) {
          return error(err);
        } 
        document.getElementById("demo").innerHTML = result2;
      });
     });
</script>

它不过是一系列链接。每次我使用特定的索引值调用此函数时,它将使用ID在h1元素中显示相应的纯文本链接。 我希望将此动态文本作为可点击的链接。

1 个答案:

答案 0 :(得分:0)

更改

<h1 id = "demo">link text here</h1>

<h1 id = "demo"><a href="your_destination.html">link text here</a></h1>