jquery:
これは私の編集したjqueryです:
$(document).ready(function(){
$("#set-button").click(function(){
$("#radio-choice-a").attr("checked", "checked");
counter=aRoute;
$('#data-scroller').scroller('destroy');
scroller();
});
});
html:編集
<div data-role="fieldcontain">
<fieldset data-role="controlgroup" data-type="horizontal">
<input type="radio" name="radio-choice" id="radio-choice-a"
value="on" checked="checked" /> <label for="radio-choice-a">A</label>
<input type="radio" name="radio-choice" id="radio-choice-b"
value="off" /> <label for="radio-choice-b">B</label>
<input type="radio" name="radio-choice" id="radio-choice-c"
value="other" /> <label for="radio-choice-c">C</label>
</fieldset>
</div>
<a href="#" id="set-button" data-theme="a">Set</a>
誰かがそれがどのように行われるか知っていますか?