文本区域作为列表
我试图制作 2 个并排的文本区域,它们之间有 2 个按钮,一个将左侧文本区域中选定行中的项目添加到右侧文本区域,另一个用于从右侧列表中删除选定项目。基本上,“行选择”功能是我失败的地方。有什么想法吗?
Im trying to make 2 side by side text areas, with 2 buttons between them, one that adds an item from a selected line in the left textarea to the textarea on the right, the other to remove a selected item from the list on the right. Basically, a 'line selected' function is where Im failing. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将每个项目放在 span/paragraph 标记中,并在必要时使用换行符将每个项目保留在单独的行上,然后您可以在各个 span 标记上放置 onclick 事件。这有帮助吗?
You can put each item in span/paragraph tag and use break line if necessary to keep each item on a separate line, then you can put a onclick event on the individual span tags. Would this help?