0

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

4

2 回答 2

0

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

<form action='[url submitting to]' method='GET'></form>
于 2013-01-06T03:36:10.097 回答
0

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

        //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;
         });

这是你想要的?

于 2013-01-06T03:40:16.730 回答