ご挨拶、
私は次のjQueryMobileコードを持っています:
<div data-role="content">
A confirmation code has been sent to your mobile phone via SMS
<br><br>
To proceed, please enter the 3-digit confirmation code below:
<br>
<input id="verifySMS_code" type="text" /><br>
<a id="verifySMS_submit" href="#" data-role="button">Submit</a>
</div>
これが私のJavaScriptです:
$(document).ready(function(){
$("#verifySMS_submit").live("click",function() {
alert('hi');
var code=$('input#verifySMS_code').val();
alert(code);
});
});
'hi'は最初のアラートボックスに表示されますが、''は2番目のアラートボックスに表示されます-つまり、完全に空白です!!!
document.getElementById('verifySMS_code')も試しましたが、役に立ちませんでした。
jquerymobile1.0a3preも試しました
これは私にとって本当に深刻な問題であり、それを修正する方法がわかりません。
誰かが助けてくれることを願っています。
よろしくお願いします。