main.go
func 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>
如果你能告诉我正确的代码示例?
相关分类