2

一部のjQuery送信ボタンで次の問題を修正するためのサポートが必要です。1つの送信ボタンで、2つのボタンが上下に表示されます。

二重送信ボタン
(出典:nyumbanipap.com

どんな助けでもありがたいです。

html:

<input type="submit" name="confirmpayment" value="Confirm Payment" data-theme="a" />

これは、フォームの通常の送信ボタンです。

編集

これは、ajax以外のページから戻るときに発生することに気づきました。たとえば、PayPalを使用していて、Paypalからリダイレクトされた場合、これはボタンが二重に表示されている場合です。

どんな助けでもありがたいです。

4

3 に答える 3

9

I just had the same problem. Turned out that I included the jquery mobile js file twice. Maybe that helps someone.

于 2012-11-27T22:32:15.087 に答える
2

I was having the same issue within a rails app with jQuery mobile (in which I'm not always using AJAX either). Adding data-role="none" to the submit tag on the form worked for me.

<input type="submit" value="Next Question" class="ui-btn ui-state-disabled btn" data-role="none">

Go to bottom to read about that: http://demos.jquerymobile.com/1.0/docs/forms/docs-forms.html

于 2015-07-08T00:59:37.500 に答える
-1

I know this is old but do not use the tags. it should look like this

< p >< a href="#whatever you are naming your form or submit area" DATA-ROLE="button">Submit< /a>< /p>

于 2012-12-30T04:38:11.237 に答える