我在循环中使用了p数据表,在表格中我使用了列的复选框字段。这显示效果很好,但如果单击第一个表的标题,则取消选中第二个表字段。 如何区分表格与表格之间的标题复选框字段。
我的代码是:
func Home(w http.ResponseWriter, r *staticAuth.AuthenticatedRequest) {
t, err := template.ParseFiles("index.html") //parse the html file homepage.html
if err != nil { // if there is an error
log.Print("template parsing error: ", err) // log it
}
err = t.Execute(w, nil) //execute the template and pass it the HomePageVars struct to fill in the gaps
if err != nil { // if there is an error
log.Print("template executing error: ", err) //log it
}
}