问候,
我有以下 jQuery Mobile 代码:
<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' 出现在第一个警告框中,但是 '' 出现在第二个警告框中 - 即完全空白!!!
我也试过 document.getElementById('verifySMS_code') 无济于事。
我什至尝试过 jquery mobile 1.0a3pre
这对我来说是一个非常严重的问题,我不知道如何解决它。
我希望有人能帮帮忙。
提前谢谢了,