我正在尝试使用 javascript 创建“a href”标签,但我不想将其用作网络链接,而是想用它来执行某些步骤!那我该怎么办?
var a = document.createElement('a');
a.attributes('href', 'function () { nn = 0 }' );// ?
a.textContent = " " + pn.length + " ";
document.getElementById("pagingN").appendChild(a);
num[i] = num[i] + n;