0
例如,一個單選按鈕值= 1的值增加的總和,單選按鈕2 =值2從選擇單選按鈕
這裏是我
腳本文件
<script type="text/javascript">
$(document).ready(function() {
$("div[data-role='footer']").prepend('<a href="#" data-rel="back" data-icon="back">Back</a>');
$(".Next").click(function() {
$.mobile.changePage("#" + $("#Answer").val());
});
$("input[type=radio]").click(function() {
var answer = $(this).val();
$("#Answer").val(answer);
});
$('.Answer').live("click", function() {
var NextQuestionID = $(this).attr('NextQuestionId');
if (NextQuestionID == '') {
location.href = "/Surveys/Index";
}
$("#survey").load('/Questions/GetQuestion', { Id: NextQuestionID }, function() {
$('#answerInput').textinput();
$(".Answer").button();
});
});
});
代碼
,這裏是我的標記
<input type="radio" name="Answer" id="radio-choice-1" value="Question2" />
<input id="Answer" class="Answer" type="hidden" value="first" />
<div class="innerspacer">
<a href="" class="Next" data-theme="d" data-role="button">Next</a></div>
我如何將單選按鈕指定爲1到4的值並總結所有問題的值?
你應該至少提供足夠的HTML讓人們知道你想要什麼,以及更好的解釋,因爲它涉及到實際的HTML。還要留下無關的代碼,如將元素附加到與您的問題無關的頁腳 – charlietfl