<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元素中显示相应的纯文本链接。 我希望将此动态文本作为可点击的链接。
答案 0 :(得分:0)
更改
<h1 id = "demo">link text here</h1>
为
<h1 id = "demo"><a href="your_destination.html">link text here</a></h1>