作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个只有几个输入字段的 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/
我是一名优秀的程序员,十分优秀!