如何将文本保存到 DOM
我如何使用 jQuery 来实现这一点。我在页面上有两个文本输入,因此当用户输入文本并离开输入字段时,是否将该文本插入到 DOM 中以便我可以访问它?
编辑:
为了澄清我有这个:
Expected Delivery Date: <input id="exp" type="text"></input>
我想做的是打印页面的内容,但它不打印这个输入值?
这是我需要用户提供的唯一输入,因此我想避免只为一个输入提交表单!
How can i achieve this using jQuery. I have two text inputs on the page, so when the users has entered text and left the input field, for that text to be inserted into the DOM so i can access it?
EDIT:
To clarify i have this:
Expected Delivery Date: <input id="exp" type="text"></input>
What i'm trying to do is print the contents of the page, but its not printing this input value?
This is the only input i need from the user so i wanted to avoid having to submit the form just for one input!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的输入已经在 DOM 中,您可以使用
.val()
< 获取它们的值/a> 像这样:您可能需要使用不同的选择器,但想法保持不变,它是
$(selector).val()
,或者可能是this
,例如,如果您想要用户离开时的值:您可以在这里测试。
Your inputs are already in the DOM, you can get their value using
.val()
like this:You may need to use a different selector but the idea stays the same, it's
$(selector).val()
, or possiblethis
, for example if you want the value when the user leaves:You can test it here.
像这样的东西吗?
Something like this?