私はこの種のものに慣れていないので、これが不可能であるか意味をなさない場合は申し訳ありません. 誰かがユーザー名をフォームに入力し、Enterキーを押すとポップアップが表示されるアプリを作成していますが、[OK]を押した後、ユーザー名をフォームに入力します---- instagram://user?username - -- フォームからのユーザー名を移動したい場所にユーザー名が表示されている場合、そこに移動します。これが意味をなさないか、不可能である場合は申し訳ありません
質問する
117 次
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 に答える