gpt4 book ai didi

java - 使用 jquery 在文本字段中显示 servlet 结果

转载 作者:太空宇宙 更新时间:2023-11-04 08:17:23 25 4
gpt4 key购买 nike

JSP

<div id="feedback" class="statusbar"></div>

在 jQuery 中

$("#categorySave").click(function(){        
$getCode = document.getElementById("catCode").value;
$getName = document.getElementById("catName").value;
$getDesc = document.getElementById("catDesc").value;
$getDepID = $("select option:selected").val();

$(':text').val('');

$('#feedback').html('<img src="images/loading.gif"/>Processing....');

$.post("CategoryOperation", {
catCode:$getCode,
catName:$getName,
catDesc:$getDesc,
catID:$getDepID
}, function(html) {
$("#feedback").html(html);
});
});

在 Servlet 中(类别操作)

out.println("<div>Record Inserted!</div>");

当我按下保存按钮(id=categorySave)时,它会在插入记录时在 div(id=feedback)中显示消息。上面的代码工作正常。但我现在想要一点改变成功插入记录后,它会在文本字段而不是 div (id=feedback) 上显示结果。

假设,CategoryOperation(Servlet)在处理后打印以下两个内容,

out.println("Record Inserted!");
out.println("1");

现在我想分别在文本字段中显示上述两个输出,它们具有以下 ID

id="Result"
id="Key"

如何在上面的 jquery 代码片段中通过编写以下代码或任何其他简单的方法来做到这一点

$('#Result').val();
$('#Key').val();

最佳答案

您需要让 servlet 返回可解析的对象格式而不是纯文本,例如 JSON 或 XML。 jQuery 对两者都有内置支持。

这是一个 JSON 示例:

String json = String.format("{\"result\": \"%s\", \"key\": \"%s\"}", "Record Inserted!", "1");
response.setContentType("application/json");
response.setCharacterEncoding("UTF-8");
response.getWriter().write(json);

( Google Gson 可能会使 JSON 格式化更加容易)

需要进行如下处理:

function(data) {
$("#Result").val(data.result);
$("#Key").val(data.key);
}

另请参阅:

关于java - 使用 jquery 在文本字段中显示 servlet 结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10200053/

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