function add_MC(){ var now = new Date().getTime(); $("#poll_content").append("
"+ "
"+ "
" + "
" + "
" + "" + "" + "" + "" + "" + "
" + "
" + "
    " + "
  • " + "" + "" + "" + "" + "
  • " + "
    " + "
  • " + "" + "" + "" + "" + "
  • " + "
    " + "
  • " + "" + "" + "" + "" + "
  • " + "
    " + "
" + "
" + "" + "
" + "
" + "
" + "
" + "
"); } function add_MCQ(){$("#poll_content").append("<%= escape_javascript(render :partial => 'new_MCQ') %>");} function add_single(){$("#poll_content").append("<%= escape_javascript(render :partial => 'new_single') %>");} function add_mulit(){$("#poll_content").append("<%= escape_javascript(render :partial => 'new_mulit') %>");} //问卷头 function pollsCancel(){$("#polls_head_edit").hide();$("#polls_head_show").show();} function pollsEdit(){$("#polls_head_edit").show();$("#polls_head_show").hide();} //单选题 function add_single_answer(doc) { doc.parent().after("
  • " + ""+ "
  • "); } function remove_single_answer(doc) { if(doc.parent().siblings("li").length == 0){doc.parent().parent().parent().parent().parent().parent().remove();}else{doc.parent().remove();} }