Commit 21fb0a05 by doszhang

dos

parent 66970e12
...@@ -107,6 +107,8 @@ $(document).ready(function () { ...@@ -107,6 +107,8 @@ $(document).ready(function () {
$('.poster-page .btn-tryprize').on('click', tryprize); $('.poster-page .btn-tryprize').on('click', tryprize);
//提交信息 //提交信息
$('.prize-page .btn-submit').on('click', submit); $('.prize-page .btn-submit').on('click', submit);
//再来一次
$('.prize-page .btn-retry').on('click', retry);
...@@ -144,6 +146,12 @@ $(document).ready(function () { ...@@ -144,6 +146,12 @@ $(document).ready(function () {
}); });
}); });
function retry() {
initQuestion();
$('.poster-page').hide();
$('.question-page').show();
}
function submit() { function submit() {
if (submitStatus) { if (submitStatus) {
submitStatus = false; submitStatus = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment