提交输入字段的值

发布于 2024-12-09 09:22:38 字数 634 浏览 0 评论 0原文

我如何提交一个定义为

<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 技术交流群。

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

发布评论

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

评论(1

醉酒的小男人 2024-12-16 09:22:38

我不确定你在问什么。

如果该 位于您要提交的

内,则它将使用 name 的参数名称有效提交> 输入 的属性。

如果 不在

中,您可能需要包含例如 ; 在表单内,并在表单提交之前将 的值分配给隐藏。

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 the name attribute of the input.

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.

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