0

次のように、ラジオボタン入力用の単純なコントロールグループがあります。

<div data-role="dialog" id="addUser" data-title="Add New User">
<div data-role="header" data-theme="b">
<h1>Add New User</h1>
</div>        
<div data-role="content">            
<div id="addNewUserErrMsg"></div>
<form name="addNewUserForm" action="addnewuser.php">
<label for="nuEmail">Email Address</label>
<input type=text id="nuEmail" name="Email" autofocus="autofocus">
<fieldset data-role=controlgroup data-mini=true>
    <input type=radio id="1" value=1 name=radio1>
    <label for="1">1</label>
    <input type=radio id="2" value=2 name=radio1>
    <label for="2">2</label>
    <input type=radio id="3" value=3 name=radio1>
    <label for="3">3</label>
</fieldset>
<label for="firstName">First Name</label>
<input type=text id="nuFirstName" name="firstName">
<label for="nuLastName">Last Name</label>
<input type=text id="nuLastName" name="lastName">
<label for="nuPassword">Password</label>
<input type=password id="nuPassword" name="password">
<label for="nuRePassword">ReEnter Password</label>
<input type=password id="nuRePassword" name="rePassword">
<label for="nuCell">Cell Phone (for alerts)</label>
<input type=text id="nuCell" name="cell">
<input type="submit" value="Create User" data-inline="true" data-theme="a">&nbsp;&nbsp;<a data-role="button" data-inline="true" data-mini="true" href="#home">Cancel</a>
</form>       
</div><!-- /content -->           
</div><!-- /adduser -->

問題は、どのボタンも選択できないことです。まるで全員障害者のようです。それらは正しく表示されているように見えます (空の円の後にテキストが続き、すべて適切にグループ化されています)。

jquerymobile 1.4-rc1 を使用しています。Chrome と FireFox の両方で試しました。

更新: ラジオ ボタンが選択されています (および値が POST 要求の一部として渡されます) が、画面上にそのことを視覚的に示すものはありません。ただの空の円。Apache エラー ログにエラーはありません。firebug が表示するエラーもありません。

4

0 に答える 0