表格字段到URL

时间:2013-01-06 03:25:24

标签: javascript forms

我对这种东西不熟悉,如果这是不可能或没有任何意义,那就很抱歉。我正在创建一个应用程序,其中有人在其中输入用户名到表单中,当他们按下输入弹出窗口说单词然后我想要在他们按下确定后将用户名放入表单---- instagram:// user?username - - 它说用户名,这就是我希望表单中的用户名,然后它会去那里。对不起,如果这没有意义或不可能想知道它是否

2 个答案:

答案 0 :(得分:0)

您希望将表单操作设置为GET。我相信这就是你要问的问题。

<form action='[url submitting to]' method='GET'></form>

答案 1 :(得分:0)

使用jQuery,如果这是您正在使用的语言,您可以阻止提交并获取用户名字段并将其添加到网址并加载此页面。

        //html
        <form>
           <input id="username">
        </form>

         //javascript 

         //the submit event is captured
         $('form').on('submit', function(e){

             //the event is passed in on the function and is used to prevent the 
             //default action so we can perform some further action
             e.preventDefault();

             //here we grab the value of the the #username text field
             var user = $('input#username').val();

             //here we are loading the instagram page based upon the user's textfield 
             window.location = 'instagram://user?' + user;
         });

这是你在找什么?