我已经制作了自己的数据主题,并且正在尝试将其应用于表单元素,但它默认使用 a、b、c、d、e 而不是我的。我已将它添加到各个方面,以确保我涵盖了所有内容,但我可以在副本中看到它使用默认值。
<div data-role="content" data-theme="home">
<form action="form.php" method="post">
<div data-role="fieldcontain" data-theme="home">
<label for="select-choice-1" class="select" data-theme="home">Title:</label>
<select name="select-choice-1" id="select-choice-1" data-native-menu="false"data-theme="home">
<option value="mr" data-theme="home">Mr</option>
<option value="mrs" data-theme="home">Mrs</option>
<option value="miss" data-theme="home">Miss</option>
<option value="ms" data-theme="home">Ms</option>
<option value="dr" data-theme="home">Dr</option>
</select>
</div>
</form>
</div><!-- /content -->