将HTML ID从一个页面传递到另一个页面,并在单击时将其传输到文本框

时间:2014-10-29 12:39:14

标签: javascript php jquery html ajax

编辑:我已将id从一个页面传递到另一个页面。 第二次编辑:我还显示了我点击弹出文本的结果。

我已经创建了一个搜索框,可以使用 Ajax 立即显示结果。显示的结果有用户名,名字和姓氏。我想将点击的文本作为用户名转到另一个文本框。

            <script>
            $(document).ready(function(){
                alert(+$("#tran").text);
                //This displays the text i clicked. which is username here

            });
                });    

    </script>

之后我想将点击的用户名结果转移到下面显示的文本框中:

<input class="to" type="text" placeholder="Username" name="receiver" id="username" required="required">


How do we do that?

1 个答案:

答案 0 :(得分:0)

解决方案:谢谢大家,我自己找到了这个解决方案。

 <script>
            $(document).ready(function(){

            $("#div2,a#tran").click (function(event) {
            // a#tran is id of hyperlink which you click located inside #div2

            var _id = $("#tran").text(); // Text that gets sent to box

            $("#username").val(_id);
            // #username is id of text box where you want to send text

            });
                });    

    </script>