gpt4 book ai didi

javascript - 如何在jsp中创建一个json对象?

转载 作者:行者123 更新时间:2023-12-03 19:03:55 25 4
gpt4 key购买 nike

我创建了一个只有几个输入字段的 JSP 页面。当我点击 submin 时,我需要 javascript 来创建 json 对象并将输入值放入其中,我想在同一个 jsp 页面中显示 json 数据。

这是我的表格

<form name="jsond" method="get">
<br>
<p id="msg"></p>
First Name:
<input type="text" id="firstName"/><br>
Last Name:
<input type="text" id="lastName"/><br>
E-mail:
<input type="text" id="email"/><br>
Mobile No:
<input type="text" id="mobile"/><br>
Place:
<input type="text" id="place"/><br>
Country:
<input type="text" id="country"/><br>
<br>
<input type="submit" name="submit" value="Submit" onclick="return submitForm(this, event);">
</form>

这是我的脚本

function submitForm(thisObj, thisEvent) {
var firstName = document.forms["jssond"]["firstName"].value;
var lastName = document.forms["jssond"]["lastName"].value;
var email = document.forms["jssond"]["email"].value;
var mobile = document.forms["jssond"]["mobile"].value;
var place = document.forms["jssond"]["place"].value;
var country = document.forms["jssond"]["country"].value;

// How to do the remaining code? I want to store the above variables in json object and display json values in <p id="msg"></p>

如何将 json 对象从 javascript 传递给 servlet?

谢谢

最佳答案

您可以在 javascript 中创建对象,然后使用 JSON.stringify 将 JSON 创建为文本。

function submitForm(thisObj, thisEvent) {
var object = {
firstName: document.forms["jssond"]["firstName"].value,
lastName: document.forms["jssond"]["lastName"].value,
email: document.forms["jssond"]["email"].value,
mobile: document.forms["jssond"]["mobile"].value,
place: document.forms["jssond"]["place"].value,
country: document.forms["jssond"]["country"].value
};
document.getElementById('msg').innerHTML = JSON.stringify(object);
}

关于javascript - 如何在jsp中创建一个json对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15379857/

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