有人可以帮助我如何将锚链接/ onclick添加到数据行
for(i=0;i<10;i++){
dataRow1 = dataRow.insertCell(0);
record = document.createTextNode(returnedValues[i].Name);
dataRow1.appendChild(record);
}
答案 0 :(得分:1)
您的问题不明确,我认为这可能会有所帮助:
// Create anchor tag
const a = document.createElement('a');
// Add link
a.href = 'http://yourlink.com';
// Add Text
a.innerText = 'Custom Link';
// `dataRow` should be a HTML Element
dataRow.appendChild(a);