使用
中的文本预填充表单字段。使用JavaScript
我在页面上有这个:
<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”类的
中的文本预置- 填充隐藏字段。
这可能吗?
更新
已经完成了这个..但是:
当页面加载时,我会收到一个包含字段内容的弹出窗口。这能阻止吗?
我的
中的内容正在更改...当内容更改时,我们是否也可以使字段“更新”?
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:
When the page loads, I get a popup with the contents of the field. Can this be stopped?
I have the content in the
<p>
changing... can we also make the field 'update' when the content changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你的 p 没有改变,为什么不在准备好的文档上使用简单的 jQuery 赋值呢?
演示
If your p doesn't change why don't you use simple jQuery assignment on document ready?
Demo