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 を作成しようとしていますが、非表示のテキストボックスを埋めるだけです。これはほとんどコメント スレッド用であり、Reply A href を使用して、どの返信先にするかを生成したいと考えています。誰にも提案はありますか?
私は試しましたが、テキストボックスを埋めていないようで、ページを更新するだけです。
リンク内でjavascriptを使用します。
<a href="javascript:_callFunction(this)">Do This</a> <script type="text/javascript"> function _callFunction(link) { document.getElementById("hiddenID").value = "X"; } </script>