提交输入字段的值
我如何提交一个定义为
<input id="inputProperties" tabindex="23" class="input_enabled"
name="inputProperties" size="60" maxlength="80" value="" />
使用类似的值
<a tabindex="27" class="text_warn" id="executeCR"
href="javascript:document.ejbRuleForm.action.value='execute';
document.Form.conditionalRuleId.value=<c:out value='${param.entryId}'/>;
document.Form.inputProperties.value=<c:out value='${inputProperties}' />;
document.Form.executeChildRules.value=<c:out value='${executeChildRules}' />;
document.Form.submit();" >
How can I submit a value defined as
<input id="inputProperties" tabindex="23" class="input_enabled"
name="inputProperties" size="60" maxlength="80" value="" />
using something like
<a tabindex="27" class="text_warn" id="executeCR"
href="javascript:document.ejbRuleForm.action.value='execute';
document.Form.conditionalRuleId.value=<c:out value='${param.entryId}'/>;
document.Form.inputProperties.value=<c:out value='${inputProperties}' />;
document.Form.executeChildRules.value=<c:out value='${executeChildRules}' />;
document.Form.submit();" >
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定你在问什么。
如果该
位于您要提交的
如果
不在
I'm not sure about what you are asking.
If that
<input>
is inside the<form>
you're submitting, it will effectively get submitted with the parameter name of thename
attribute of theinput
.In case the
<input>
is not in the<form>
, you might want to include for instance a<input type="hidden">
inside the form and assign the<input>
's value to the hidden before form submission.