gpt4 book ai didi

java - 从 JSP 调用外部 javascript 函数

转载 作者:行者123 更新时间:2023-11-28 09:19:43 24 4
gpt4 key购买 nike

我是 javascript 的新手。我正在尝试从 jsp 调用 javaScript 函数。它不起作用。我试图通过 bugzila 来调试它。它说“此页面上没有 Javascript”

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4 /loose.dtd">
<html>
<script type="text/javascript" src="ajaxs.js"></script>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

</head>
<body>
<%
out.println("Bismillahir Rahmanir Rahim");
%>

<jsp:useBean id="numBean" class="beans.NumberBean">
<jsp:setProperty name="numBean" property="*" />
</jsp:useBean>

<form action="index.jsp" method="post">
<table>
<tr>
<td>Enter Integers:</td>
<td><input type="text" id="inputString" name="inputString"
value="<jsp:getProperty name="numBean" property="inputString" />"
/> </td>
<td>(Use semi-colon to separate number)</td>
</tr>
<tr>
<td>M - number of largest element to find.:</td>
<td>
<input type="text" id="nthHighest" name="nthHighest"
value="<jsp:getProperty name="numBean" property="nthHighest" />" />
</td>
</tr>
</table>
<input type="submit" value="Identify" onclick="ajaxFunction()" />
<div id="result"></div>



</form>
</body>
</html>

我试图在 onclick 事件上调用“ajaxFunction()”。我在顶部包含了 js 文件,如下所示: <script type="text/javascript" src="ajaxs.js"></script>你能帮我找出我做错了什么吗...

提前致谢

最佳答案

尝试在 head 标签中包含带有“src="ajaxs.js”的脚本标签(您当前的脚本包含“src="ajaxs.js”)。head 标签中的内容会在加载页面加载。

谢谢......

关于java - 从 JSP 调用外部 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15187991/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com