首先,项目目录

1、jquery要在所有<script>前面
<head>
    <meta charset="UTF-8">
    <title>注册</title>
</head>
<script th:src="@{/js/jquery-1.9.1.js}"></script>
<script> </script>
2、在thymeleaf中src写法如下
<script th:src="@{/js/jquery-1.9.1.js}"></script>
3、普通html页面如下
<script src="/js/jquery-1.9.1.js"></script>
4、用<script></script>不要用<script/>!!
5、路径一定要写对,springboot文件注意看yml或者properties文件中对静态资源的配置(默认在resourcesstatic中)