OnClick 事件,显示弹出窗口或聚焦于文本框以添加评论
我想要实现的目标如下。我(仍在)处理时间表,用户必须能够添加评论。
D2 的评论 [ ................. ]
TaskID - Taskname - D1 - D2 - D3 ...
1 Hello 5 3 2
2 Bai 4 2 1
3 I'm back 3 4 3
当用户单击特定文本框时,他必须填写时间,附加文本框应获得评论值那个特定的盒子。当他单击另一个文本框时,它应该获得该值等。
我真的不知道在哪里寻找,或者如何才能做到最好。有什么想法吗? JavaScript? jQuery?我目前正在使用 Spring MVC,因此它应该获取该值并将其添加到特定的模型属性中,以便可以提交。
另一种可能性是某种弹出窗口,当您单击文本框旁边的图标时会出现......
What I'm trying to achieve is the following. I'm (still) working on a timesheet, and the user has to be able to add a comment.
Comment [ .................. ] for D2
TaskID - Taskname - D1 - D2 - D3 ...
1 Hello 5 3 2
2 Bai 4 2 1
3 I'm back 3 4 3
When a user clicks on a specific textbox, where he has to fill in the hours, an additional textbox should get the comment value of that specific box. When he clicks on another textbox, it should get that value etc, etc.
I don't really know where to look for, or how I could do it best. Any ideas? Javascript? JQuery? I'm currently working with Spring MVC, so it should get the value and add it to a specific modelattribute so it can be submitted.
Another possibility is some kind of pop-up, which appears when you click on an icon next to the textbox...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用Javascript来实现这一点。
输入某个字段后,我会调用一个函数来用新的类名填充注释:
函数:
这将使用最新聚焦文本框中的值填充文本框。它还将使用提供的类名来设置类名。
为了保存评论值,我使用 jQuery Ajax:
I used Javascript to realize this.
Once you enter a certain field, I call a function to fill the commentary with a new classname:
Function:
This will fill the textbox with the value from the latest focused textbox. It will also set the classname using the provided one.
To save the commentary value, I use jQuery Ajax: