如何通过JavaScript向ActionBean发送数据?
我正在玩 Stripes,我想知道是否可以将 Javascript 生成的数据发送到 ActionBean。更具体地说,当我用鼠标单击页面上的某个元素时,我想在单击 stripes:link
后将该元素的 ID 发送回 ActionBean。假设我已经将该 ID 保存在 JS 变量 id
中,我该怎么做?
I'm playing with Stripes and I wonder if it is possible to send Javascript generated data to ActionBean. To be more specific, when I click with my mouse on certain element on page, I want to send ID of that element back to ActionBean after clicking on stripes:link
. Providing I already have that ID saved in a JS variable id
, how do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用参数化链接吗?
最有可能生成:
http://mysite.com/...?id=some_default_value
,稍后您将使用 javascript 将some_default_value
更改为id
你想要吗?注意:建议未经验证。我没有在这个旧的 lappie 上安装开发工具。
编辑:再想一想,为什么不编写一些 javascript 来附加
"?id=" + id; code> 到链接的 url 地址?
Are you using parameterised link?
Which would most probably generate:
http://mysite.com/...?id=some_default_value
, which you would later use javascript to changesome_default_value
to theid
you want?Note: Suggestion unverified. I've no dev tool installed on this old lappie.
Edit: On second thought, why not just write some javascript to append
"?id=" + id;
to the link's url address?在您的 html 中创建一个隐藏的输入元素,
使用 javascript 设置它的值
,该值将随您的表单提交一起发布。
create a hidden input element in your html
use javascript to set the value of it
and the value will be posted with your form submission.