使用

中的文本预填充表单字段。使用JavaScript

发布于 2025-01-07 09:03:19 字数 529 浏览 0 评论 0原文

我在页面上有这个:

<p class="test" style="width: 300px" title="intro">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>

在下面,我想要一个隐藏字段...单击提交按钮时,我希望将带有“test”类的

中的文本预置- 填充隐藏字段。

这可能吗?

更新

已经完成了这个..但是:

  1. 当页面加载时,我会收到一个包含字段内容的弹出窗口。这能阻止吗?

  2. 我的

    中的内容正在更改...当内容更改时,我们是否也可以使字段“更新”?

I have this on a page:

<p class="test" style="width: 300px" title="intro">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>

Underneath, I want to have a hidden field... On clicking on the submit button, I would like the text from <p> with class "test" to pre-fill the hidden field.

Is this possible?

UPDATE

Have done this.. but:

  1. When the page loads, I get a popup with the contents of the field. Can this be stopped?

  2. I have the content in the <p> changing... can we also make the field 'update' when the content changes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

疏忽 2025-01-14 09:03:20

如果你的 p 没有改变,为什么不在准备好的文档上使用简单的 jQuery 赋值呢?

$(function() {
  $("#MyInput").val($("#TargetP").text());
  alert($("#MyInput").val());
});

演示

If your p doesn't change why don't you use simple jQuery assignment on document ready?

$(function() {
  $("#MyInput").val($("#TargetP").text());
  alert($("#MyInput").val());
});

Demo

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