• 2021-04-14 问题

    在HTML中 标记的作用是 A. 在窗口中划一条水平线 B. 换行 C. 设置链接 D. 插入表格 正确答案:D 学生答案:B 错误 得分:0.0 分 取消 确定 
 Zepto(function($){
 
 //$("img:not(.ans-formula-moudle,.goTop)").on('click',function(){
 $("img:not(.ans-formula-moudle)").not('.goTop').on('click',function(){
 var url = $(this).attr("src");
 jsBridge.postNotification("CLIENT_PREVIEW_IMAGES", {
 imageUrls : [{
 imageUrl : url,
 getOriginSize : 1
 }],
 showIndex : 0
 });
 });
 
 
 $('.folding').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().hide();
 zlo_opened.removeClass("zlo_opened");
 }else{
 folding.next().show();
 zlo_opened.addClass("zlo_opened");
 }
 });
 });
 
 });
 
 $('.folding2').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().fadeOut();
 zlo_opened.removeClass("zlo_opened");
 $(folding.next()).data("loaded",true);
 }else{
 folding.next().fadeIn();
 zlo_opened.addClass("zlo_opened");
 if(!$(folding.next()).data("loaded")){
 voteStatistic(folding.next(),zlo_opened.attr("data"));
 }
 }
 });
 });
 
 function _jsBridgeReady() {
 var icon = ServerHost.moocDomain + "/images/work/phone/reWork.png";
 jsBridge.postNotification('CLIENT_CUSTOM_MENU', {
 show : '1',
 icon : icon,
 menu : '',
 option : "rework()",
 index : '0',
 width : '65',
 height : '18'
 });
 
 jsBridge.bind('CLIENT_REFRESH_EVENT', function(object){
 window.location.reload();
 });
 }
 
 function rework() {
 var answerId = $("#examAnswerId").val();
 var relationId = $("#examRelationId").val();
 var courseId = $("#courseId").val();
 var classId = $("#classId").val();
 
 $(".cx_alert-txt").html("打回后学生需要重新提交考试!");
 $("#okBtn").html("打回");
 $(".cx_alert").css("display", "block");
 $(".cx_alert-box").css("display", "block");
 $("#okBtn").unbind();
 $("#cancelBtn").unbind();
 $("#okBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 var url = "/exam/phone/reTest?classId=" + classId + "&answerId=" + answerId + "&relationId=" + relationId + "&courseId=" + courseId;
 $.ajax({
 url : url,
 type : 'get',
 dataType : 'json',
 success : function(data) {
 openWindowHintClient(1, data.msg, function() {
 jsBridge.postNotification("CLIENT_REFRESH_STATUS", {
 "status" : 1
 });
 jsBridge.postNotification('CLIENT_EXIT_LEVEL', {
 message : ''
 });
 }, 1000);
 }
 });
 });
 $("#cancelBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 });
 }
 
/images/phone/goTop.png

    在HTML中 标记的作用是 A. 在窗口中划一条水平线 B. 换行 C. 设置链接 D. 插入表格 正确答案:D 学生答案:B 错误 得分:0.0 分 取消 确定 
 Zepto(function($){
 
 //$("img:not(.ans-formula-moudle,.goTop)").on('click',function(){
 $("img:not(.ans-formula-moudle)").not('.goTop').on('click',function(){
 var url = $(this).attr("src");
 jsBridge.postNotification("CLIENT_PREVIEW_IMAGES", {
 imageUrls : [{
 imageUrl : url,
 getOriginSize : 1
 }],
 showIndex : 0
 });
 });
 
 
 $('.folding').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().hide();
 zlo_opened.removeClass("zlo_opened");
 }else{
 folding.next().show();
 zlo_opened.addClass("zlo_opened");
 }
 });
 });
 
 });
 
 $('.folding2').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().fadeOut();
 zlo_opened.removeClass("zlo_opened");
 $(folding.next()).data("loaded",true);
 }else{
 folding.next().fadeIn();
 zlo_opened.addClass("zlo_opened");
 if(!$(folding.next()).data("loaded")){
 voteStatistic(folding.next(),zlo_opened.attr("data"));
 }
 }
 });
 });
 
 function _jsBridgeReady() {
 var icon = ServerHost.moocDomain + "/images/work/phone/reWork.png";
 jsBridge.postNotification('CLIENT_CUSTOM_MENU', {
 show : '1',
 icon : icon,
 menu : '',
 option : "rework()",
 index : '0',
 width : '65',
 height : '18'
 });
 
 jsBridge.bind('CLIENT_REFRESH_EVENT', function(object){
 window.location.reload();
 });
 }
 
 function rework() {
 var answerId = $("#examAnswerId").val();
 var relationId = $("#examRelationId").val();
 var courseId = $("#courseId").val();
 var classId = $("#classId").val();
 
 $(".cx_alert-txt").html("打回后学生需要重新提交考试!");
 $("#okBtn").html("打回");
 $(".cx_alert").css("display", "block");
 $(".cx_alert-box").css("display", "block");
 $("#okBtn").unbind();
 $("#cancelBtn").unbind();
 $("#okBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 var url = "/exam/phone/reTest?classId=" + classId + "&answerId=" + answerId + "&relationId=" + relationId + "&courseId=" + courseId;
 $.ajax({
 url : url,
 type : 'get',
 dataType : 'json',
 success : function(data) {
 openWindowHintClient(1, data.msg, function() {
 jsBridge.postNotification("CLIENT_REFRESH_STATUS", {
 "status" : 1
 });
 jsBridge.postNotification('CLIENT_EXIT_LEVEL', {
 message : ''
 });
 }, 1000);
 }
 });
 });
 $("#cancelBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 });
 }
 
/images/phone/goTop.png

  • 2022-05-26 问题

    13/(7x13)-7/(7x13)是不是13同13约去1/7,7同7约得1/13=1/7-1/13,

    13/(7x13)-7/(7x13)是不是13同13约去1/7,7同7约得1/13=1/7-1/13,

  • 2022-05-30 问题

    1又2/13*11/13

    1又2/13*11/13

  • 2022-06-15 问题

    13×1=( )。 A: 13 B: 14 C: 15

    13×1=( )。 A: 13 B: 14 C: 15

  • 2022-06-04 问题

    使用简单选择排序算法,升序排序,原始序列为“12 1 4 18 13”,则第一趟排序结果为( )。 A: 1 4 12 18 13 B: 4 1 12 13 18 C: 1 4 12 13 18 D: 1 12 4 18 13

    使用简单选择排序算法,升序排序,原始序列为“12 1 4 18 13”,则第一趟排序结果为( )。 A: 1 4 12 18 13 B: 4 1 12 13 18 C: 1 4 12 13 18 D: 1 12 4 18 13

  • 2022-06-26 问题

    甲公司为增值税一般纳税人,本月销售产品一批,取得不含税销售额10万元,同时向对方收取包装费1 000元,已知增值税税率为13%,则甲公司本月增值税销项税额的下列计算中,正确的是( )。 A: [100 000÷(1+13%)]×13%+[1 000÷(1+13%)]×13%=11 619.47(元) B: 100 000×13%=13 000(元) C: 100 000×13%+[1 000÷(1+13%)]×13%=13 115.04(元) D: 100 000×13%+1 000×13%=13 130(元)

    甲公司为增值税一般纳税人,本月销售产品一批,取得不含税销售额10万元,同时向对方收取包装费1 000元,已知增值税税率为13%,则甲公司本月增值税销项税额的下列计算中,正确的是( )。 A: [100 000÷(1+13%)]×13%+[1 000÷(1+13%)]×13%=11 619.47(元) B: 100 000×13%=13 000(元) C: 100 000×13%+[1 000÷(1+13%)]×13%=13 115.04(元) D: 100 000×13%+1 000×13%=13 130(元)

  • 2022-06-01 问题

    MOD(-13,-3)与MOD(13,-3)的正确结果是 A: -1,-2 B: -1,-1 C: -2,-1 D: -2,-2

    MOD(-13,-3)与MOD(13,-3)的正确结果是 A: -1,-2 B: -1,-1 C: -2,-1 D: -2,-2

  • 2022-07-25 问题

    将{ 5, 11, 13, 1, 3, 6 }依次插入初始为空的二叉搜索树。则该树的后序遍历结果是( ) A: 3, 1, 5, 6, 13, 11 B: 1, 3, 11, 6, 13, 5 C: 3, 1, 6, 13, 11, 5 D: 1, 3, 5, 6, 13, 11

    将{ 5, 11, 13, 1, 3, 6 }依次插入初始为空的二叉搜索树。则该树的后序遍历结果是( ) A: 3, 1, 5, 6, 13, 11 B: 1, 3, 11, 6, 13, 5 C: 3, 1, 6, 13, 11, 5 D: 1, 3, 5, 6, 13, 11

  • 2022-06-01 问题

    !(4-9)的结果是() A: 13 B: -13 C: 1 D: 0

    !(4-9)的结果是() A: 13 B: -13 C: 1 D: 0

  • 2022-06-10 问题

    不等式x+12x+1−|x|≥1的解集为(−13,+∞)(−13,+∞).

    不等式x+12x+1−|x|≥1的解集为(−13,+∞)(−13,+∞).

  • 1 2 3 4 5 6 7 8 9 10