How to execute JS from JSP Page?

时间:2017-06-14 10:28:08

标签: javascript jsp

I'm executing the following line of code on page load for a JSP page in JavaScript.

alert("test");

I'm trying to debug it but it's not working any idea what could cause this?

Thanks in advance!

1 个答案:

答案 0 :(得分:0)

如果没有看到JSP页面的代码,很难猜到,为什么不执行JavaScript。

  

我没有得到输出意味着没有任何警告对话框   显示,如果我用HTML页面做同样的事情,警告对话框   框正在显示。

有效的HTML文件也是有效的JSP文件。因此,如果您有一个可用的HTML文件并将其扩展名重命名为.jsp,那么它是一个有效的JSP文件,其工作方式应与HTML相同。在HTML或JSP中嵌入JavaScript没有区别。

E.g。这是一个带有JavaScript的有效JSP页面:

<!DOCTYPE html>
<html>
    <head>
        <title>JSP test</title>
        <script>
            alert("test");
        </script>
    </head>
    <body>
        <h1>JSP test</h1>
    </body>
</html>