我需要在 javascript 函数中添加 asp 图像按钮。实际上,我需要在 html 表中动态创建图像按钮。这是我的代码。我需要添加我提到的图像按钮“---这里我需要添加图像按钮---”
function tableSeats() {
document.write("<table align=center>");
for (var i = 1; i <= 5; i++) {
document.write("<tr height=30px>");
for (var r = 1; r <= 10; r++) {
document.write("<td width=30px>");
document.write(--- Here I need to add the image button ---);
document.write("</td>");
}
document.write("</tr>");
}
document.write("</table>");
}
如果这是不可能的,请告诉我使用 c#.net 的方法提前谢谢...