main.gofunc thandle(rw http.ResponseWriter, req *http.Request) { t, _ := template.ParseFiles("basic.html")// t.Execute(rw, nil)}func main() { http.HandleFunc("/", thandle) http.ListenAndServe(":9999", nil)}我不明白。哪部分错了?基本.html<head><script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function() { alert('hey'); });</script></head>如果你能告诉我正确的代码示例?
1 回答
- 1 回答
- 0 关注
- 201 浏览
添加回答
举报
0/150
提交
取消