将文本字段值从一个 html 页面传递到另一页面
我的问题可能听起来很幼稚,但确实很难做一件非常简单的事情。假设我必须 html 页面 - send.html
和 receive.html
。
在 send.html
页面中 -
我有文本字段和一个按钮,如下所示 -
<表单onsubmit =“recieve.html”> <输入类型=“文本”id=“mytextfield”> <输入类型=“提交”id=“提交按钮”值=“开始”>
在这里,我想在文本字段上放置一些内容,并且希望在接收页面中看到该值,例如 - Hello 'textfield 的值'。就是这样。
我需要使用 JS cookie 吗?如果没有,我怎样才能以最简单的方式做到这一点?
需要帮助:(
My question may sound naive, but really struggling to do a very simple thing. Suppose I have to html page - send.html
and receive.html
.
In send.html
page -
I have text field and a button in like following -
<body>
<form onsubmit="recieve.html">
<input type="text" id="mytextfield">
<input type="submit" id="submitbutton" value="Go">
</form>
</body>
Here I want to put something on the textfield and I want to see that value in the receive page some thing like - Hello 'value of textfield'. That's it.
Do I need to use JS cookie for that? If not, how can I do it in the most simple way?
Need help :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是 PHP。底线是您需要在服务器端处理数据的东西。
The most simple way is PHP. Bottom line is you need something handling the data on the server side.
使用 javascript,您可以编写一个函数来将值存储在 cookie 中并在下一页上读取它。顺便说一句,您的页面位于
action
属性中。onsubmit
需要一个 javascript 函数,而不是一个页面。With javascript you can write a function to store the value in a cookie and read it on the next page. By the way, your page goes in the
action
attribute.onsubmit
expects a javascript function, not a page.