Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是故事。
我有一个带有一些表单字段的表单。
例子:
我想做的是当我单击提交表单时,让 JQuery 获取电子邮件字段值并将其附加到消息字段。
我将值存储在这里:
var email = $('#email').val();
有任何想法吗?
$("#message").val ($("#message").val () + $('#email').val());
这应该有效:
$("#message").val( $("#message").val() + $('#email').val() );