jsp中能写JavaScript,其写法有:1、“<script type="text/javascript">alert(1);</script>”方式;2、引入外部JavaScript脚本文件。
本文操作环境:windows7系统、javascript1.8.5版,DELL G3电脑
jsp中能不能写JavaScript?
jsp页面中是可以写javascript脚本的。
其实,在 jsp 页面里写javascript脚本和在 HTML 页面里写javascript脚本没啥区别;需要使用script标签。
在JSP页面中写JavaScript脚本有两个方法:
1、直接写
<script type="text/javascript"> alert(1); </script>
2、在HTML页面中引入外部JavaScript脚本文件
将JavaScript脚本写在js文件中,然后在HTML页面中引入。
<script type="text/javascript" src="json.js" ></script>
推荐学习:《javascript高级教程》