将文本字段值从一个 html 页面传递到另一页面

发布于 2024-11-17 10:58:07 字数 468 浏览 0 评论 0原文

我的问题可能听起来很幼稚,但确实很难做一件非常简单的事情。假设我必须 html 页面 - send.htmlreceive.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

治碍 2024-11-24 10:58:07

最简单的方法是 PHP。底线是您需要在服务器端处理数据的东西。

The most simple way is PHP. Bottom line is you need something handling the data on the server side.

私野 2024-11-24 10:58:07

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文