gpt4 book ai didi

javascript - Jade 表单元格内的按钮

转载 作者:行者123 更新时间:2023-12-03 04:12:52 24 4
gpt4 key购买 nike

我想添加一个按钮来显示在表格的每一行中,但是该按钮没有出现,不知道为什么。我是 jade 和 Node js 的新手

Jade file

html 
head
body


table.table.table(border='1')
thead
tr
th ID
th Name
th Age
th City
th Department
tbody
each row in rows
tr
td=row.id
td=row.name
td=row.age
td=row.city
td=row.department
td button(type='submit',onclick='edit("#{row.id}")') Edit

script.
function edit(d){
var val = confirm ("Do you want to edit the record ?");
if (val==true){
return true;
}
};

最佳答案

您没有正确缩进您的 th(它们需要相对于它们所在的 tr 缩进)并且您需要包含一个空的(或在最后一个 th 上设置 colspan = 2")以容纳 td编辑按钮需要)

thead
tr
th ID
th Name
th Age
th City
th Department
th

关于javascript - Jade 表单元格内的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44258186/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com