/** * 主播认证 */ $(function() { init(); }) function init() { if(!zbObj.isLogin()) { window.location.href = "index.html"; return; } else { $(".zb-logout").show(); $(".zb-logout").click(function() { zbObj.logout(); window.location.href = "index.html"; }); // ajaxGetZbInfo(zbObj.user.cid); $("#rc-right").click(function() { CountUserValue(); }); $("#rc-left").click(function() { resetting(); }); } } function CountUserValue(){ var userCiscikId = zbObj.user.cid; var str = ''; var iurl = $(".submission").val(); var itime = $(".submission-1").val(); console.log(iurl); console.log(itime); if(checkBroadcast(iurl) && checkTimers(itime)){ var ajaxUrl = config.zbApi.savezbadauthinfo; var parameter = { ciscik_id: userCiscikId, live_url:iurl, platform: getSys() }; $.ajax({ type:'post', async: true, url: ajaxUrl, datatype:'jsonp', data:parameter, jsonp: 'callback', beforeSend:function(){ showContainerByClassName("id-worth-cal-container"); }, success:function(){ if(json.code == 0) { ajaxGetZbIdAuthStatus(cid); } }, error: function() { showErrorMsg1("数据提交失败,请重新提交"); showContainerByClassName("id-auth-container"); } }) } } function ajaxGetZbIdAuthStatus(cid){ var ajaxUrl = config.zbApi.getzbidauthstatus; var parameter = { ciscik_id: cid, platform: getSys() }; $.ajax({ type:"post", url:ajaxUrl, async:true, dataType: 'jsonp', data: parameter, jsonp: 'callback', success:function(json){ if (json.code == 0) { if(json.data.status == 0) { showContainerByClassName("id-popularity-ratong-02-container"); } } }, error: function() {} }); } /** * 根据样式的类名显示响应容器,其他容器隐藏 * @param {Object} className */ function showContainerByClassName(className) { $(".content-container").hide(); $("." + className).show(); } /** * 检测直播地址 * @param {Object} data */ function checkBroadcast(data) { if(data == null || data == "" || data == undefined) { showErrorMsg1(config.zbQualityAuthErrorMsg.liveUrlError.msg1); return false; } if(!utilObj.IsURL(data)) { showErrorMsg1(config.zbQualityAuthErrorMsg.liveUrlError.msg2); return false; } if(utilObj.IsURL(data)) { showErrorMsg1(config.zbQualityAuthErrorMsg.liveUrlError.msg2); return true; } return false; } /** * 检测直播时段 * @param {Object} data */ function checkTimers(data) { if(data == null || data == "" || data == undefined) { showErrorMsg1(config.zbQualityAuthErrorMsg.liveTimeSlotError.msg1); return false; } if(!utilObj.matchStr(data)) { showErrorMsg1(config.zbQualityAuthErrorMsg.liveTimeSlotError.msg2); return false; } if(utilObj.matchStr(data)) { showErrorMsg1(config.zbQualityAuthErrorMsg.liveTimeSlotError.msg2); return true; } return false; } /** * 错误信息提示1 * @param {Object} msg */ function showErrorMsg1(msg) { $('.adderss-01').text(msg); } //重置 function resetting() { $('#div1')[0].reset(); i = 1; var aDiv = document.getElementById('div1').children; if(document.querySelectorAll('.item-container').length > 1) { var aDiv = document.getElementById('div1').children; document.getElementById('div1').removeChild(aDiv[1]); while(document.querySelectorAll('.item-container').length - 1) //当div下还存在子节点时 循环继续 { document.getElementById('div1').removeChild(aDiv[aDiv.length - 1]); } } }
这是现在的样子,求个大神帮忙解决,急,在线坐等。。。要是还需要什么部分可以跟我说。。。。
看不懂意思、
要是不介意的话可以加我QQ842936131
这个页面需要本地判断表单,可是有个追加表单的效果。。
但是,本地判断的是第一组input,后面拷贝出来的input没有被判断。。。