有什么方法可以将单击的单词(来自 html)存储在服务器中的单独文件中吗?

发布于 2024-12-03 01:36:06 字数 382 浏览 1 评论 0原文

以下 html 的工作原理是“当用户单击“音乐”一词时,它会显示 html 页面(即“https://snu.ac.kr/music.html”)”

<a href"#" onClick="parent.Content.location='https://snu.ac.kr/music.html'; return      
false;">Music</a> 

我的问题是:当用户单击该词时在网络中,系统(服务器)有什么方法可以使用python cgi将单击的单词“音乐”写入服务器中的单独文件中?

我需要将 user_clicked 单词存储在单独的文件中以在服务器中执行其他任务,但我坚持继续该部分...任何提示都会非常有帮助。谢谢!

The following html works as "when a user clicks the word "Music", it shows the html page (i.e. 'https://snu.ac.kr/music.html')"

<a href"#" onClick="parent.Content.location='https://snu.ac.kr/music.html'; return      
false;">Music</a> 

My question is : when the user clicks the word in the web, is there any way for the system (the server) to write the clicked word "music" in the separate file in the server using python cgi?

I need to store the user_clicked words in the separate file to perform other task in the server, but I am stuck in proceeding that part... Any tips would be very helpful. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

爱的那么颓废 2024-12-10 01:36:06

您应该使用 Javascript 在后台执行 AJAX 风格的帖子,以保存您的任何信息想要点击一下。然后成功重定向页面。

You should use Javascript to do an AJAX-style post in the background to save whatever information you'd like on click. Then redirect the page on success.

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