jsp页面中怎么写javascipt

如题所述

在JSP页面中写JavaScript 脚本有两个方法
1直接写
<script type="text/javascript">
alert(1);
</script>
2 写在js文件中,然后再页面中引入
<script type="text/javascript" src="json.js" ></script>
其实,在 jsp 页面里写 js 和在 HTML 页面里写 js 没啥区别
温馨提示:答案为网友推荐,仅供参考
相似回答