Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个 A href,它将一个值带到同一页面,它只会填充一个隐藏的文本框。这几乎是评论线程,我想使用回复 A href 来生成它将要回复的回复。有人有什么建议吗?
我已经尝试过,但似乎没有填充文本框,它只是刷新了页面。
在链接中使用 javascript:
<a href="javascript:_callFunction(this)">Do This</a> <script type="text/javascript"> function _callFunction(link) { document.getElementById("hiddenID").value = "X"; } </script>