Discussion of 绑架/綁架 [bǎng jià] to kidnap, to abduct (2024)

Discussion of /

'; var id = document.getElementById('msgArea'+postId+'.'+AnswerId); id.innerHTML = str; id.style.padding='1em'; id.style.color='#D8F70E';}function wD_removeAlert(postId,AnswerId){ var id = document.getElementById('msgArea'+postId+'.'+AnswerId); id.innerHTML = ''; id.style.padding='0';}function wD_removeAllAlerts(){ var items = document.getElementsByClassName('wD_alert'), i, len; for (i = 0, len = items.length; i < len; i++) { items[i].innerHTML = ''; items[i].style.padding='0'; }}function wD_mainAlert(txt){ var formattedTxt = '

×

'+txt+'

'; var wd_id = document.getElementById('wD_PopUp') if(document.getElementById('xx') !=null){ wd_id.innerHTML=formattedTxt; window.scrollTo(0,0); wd_id.style.top= '0px'; wd_id.style.display='block'; wD_resizeIframe(); }else{ alert(txt); }}function wD_mainAlertClose(){ var wd_id = document.getElementById('wD_PopUp') wd_id.innerHTML=''; wd_id.style.display='none'; wD_resizeIframe();}function ajaxTransferFailed(){ if(wD_restoreStr!=''){ try{ document.getElementById(wD_restoreLoc).value=wD_restoreStr; } catch(err){} } if(!true){ if(false) app.location('tc-failed://'); else window.location.href = 'tc-failed://'; } else { wD_mainAlert('Communication with the server failed. Please check your internet connection or try later.'); }}function wD_ajaxInsert(postWhat,where) { var myXmlhttp; if (window.XMLHttpRequest) { myXmlhttp = new XMLHttpRequest(); } else { myXmlhttp = new ActiveXObject('Microsoft.XMLHTTP'); } myXmlhttp.addEventListener('error', ajaxTransferFailed, false); myXmlhttp.onreadystatechange = function() { if (myXmlhttp.readyState == 4 && myXmlhttp.status == 200) { if(where!='js') document.getElementById(where).innerHTML = myXmlhttp.responseText; else eval(myXmlhttp.responseText); }else if(myXmlhttp.readyState == 4 ){ ajaxTransferFailed(); } }; if(true) postWhat+='&asIframe=1'; // alert('https://www.trainchinese.com/v1/a_all/wordDiscussion_asw.php?'+postWhat); wD_removeAllAlerts(); myXmlhttp.open('POST','https://www.trainchinese.com/v1/a_all/wordDiscussion_asw.php',true); myXmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded'); myXmlhttp.timeout = 30000; myXmlhttp.ontimeout = function () { ajaxTransferFailed(); } myXmlhttp.send(postWhat); return true;} function wD_sendPost(postId,stat,wordId,userId){ if(postId == 0) postId=''; wD_comment = document.getElementById('newComment'+postId).value; if(wD_comment.length<10 || wD_comment=='Add something you think other learners will find interesting or ask a relevant question'){ document.getElementById('wD_warning'+postId).innerHTML='Please write a at least 10 characters.
'; return; } var url='wordId='+wordId+'&userId='+userId; if(postId==0){ url += '&xreg=1&tcLanguage=en'; }else{ var newStat=''; var newLang=''; if(stat){ var e = document.getElementById('newStat'+postId); newStat = '&status='+ encodeURIComponent(e.options[e.selectedIndex].value); var f = document.getElementById('newLanguage'+postId); if (typeof f != 'undefined') newLang= '&language='+ encodeURIComponent(f.options[f.selectedIndex].value); } url += '&xreg=5&tcLanguage=en&postId='+postId+newStat+newLang; } url += '&newPost='+encodeURIComponent(wD_comment); wD_restoreStr=wD_comment; // text to be restored in case of failure wD_restoreLoc='newComment'+postId; // id of element where text should be included if(postId==''){ document.getElementById('newComment').value=''; } wD_ajaxInsert(url,'js'); document.getElementById('newCommentLenght'+postId).innerHTML=''; if(!true){ if(false) app.location('tc-changed://'); else window.location.href = 'tc-changed://'; }}function wD_sendAnswer(postId,answerId, wordId,userId,tcLanguage){ if(answerId==0) var idNumber = postId; else var idNumber =postId+'.'+answerId; var wD_Answer = document.getElementById('newAnswer'+idNumber).value; if(wD_Answer.length<10){ document.getElementById('wD_warningAnswer'+postId).innerHTML='Please write a at least 10 characters.
'; return; } var url='tcLanguage='+tcLanguage+'&wordId='+wordId+'&userId='+userId+'&postId='+postId+'&answerId='+answerId; if(answerId != 0){ /* get the status and new language */ var e = document.getElementById('newStat'+postId+'.'+answerId); url += '&xreg=6&status='+ encodeURIComponent(e.options[e.selectedIndex].value); var f = document.getElementById('newLanguage'+postId+'.'+answerId); if (typeof f != 'undefined') url += '&language='+ encodeURIComponent(f.options[f.selectedIndex].value); }else{ url +='&xreg=2'; } url += '&newAnswer='+encodeURIComponent(wD_Answer); document.getElementById('newAnswer'+idNumber).value=''; wD_restoreStr=wD_Answer; // text to be restored in case of failure wD_restoreLoc='newAnswer'+idNumber; // id of element where text should be included wD_ajaxInsert(url,'js'); if(!true){ if(false) app.location('tc-changed://'); else window.location.href = 'tc-changed://'; }}function wD_changeWordIdForPost(postId,wordId){ // only used with wordDiscussionAdmin.php var url='xreg=31&wordId='+wordId+'&postId='+postId; wD_ajaxInsert(url,'js');}function wD_movePostToQA(postId){ if(confirm('Do you want to move this post to Q&A - there is no way back!')){ var url='xreg=35&postId='+postId; wD_ajaxInsert(url,'js'); } }function wD_setTranslation(postId,translLangCode,value){ if(translLangCode==2 ){ var url='xreg=41&postId='+postId+'&translLangCode='+translLangCode+'&value='+(document.getElementById('translRu'+postId).checked?'1':'0'); wD_ajaxInsert(url,'js'); } if(translLangCode==3 ){ var url='xreg=41&postId='+postId+'&translLangCode='+translLangCode+'&value='+(document.getElementById('translEs'+postId).checked?'1':'0') ; wD_ajaxInsert(url,'js'); } } function wD_openAnswers(postId,scoll){ document.getElementById('wD_Answers'+postId).style.display='block'; if(document.getElementById('wD_AddAnswerArea'+postId).style.display == 'none') document.getElementById('wD_AddAnswerArea'+postId).style.display='table'; try{ document.getElementById('btnOpenAnswers'+postId).style.display='none'; } catch(err){} wD_resizeIframe(); if(false && scoll){ var el = document.getElementById('wD_AddAnswerArea'+postId); el.scrollIntoView(false); }} function wD_reportAbuse(postId,answerId,wordId,userId){ document.getElementById('wD_abuseArea'+postId+'.'+answerId).style.display='block'; wD_resizeIframe(); }function wD_sendAbuse(postId,answerId,wordId,userId){ var txtReason = document.getElementById('whyAbuse'+postId+'.'+answerId).value; if(txtReason.length<5){ document.getElementById('responseAbuse'+postId+'.'+answerId).innerHTML='Please describe the reason!' return; } var url='xreg=4&wordId='+wordId+'&userId='+userId+'&postId='+postId+'&answerId='+answerId+'&abuse=1&txtReason='+encodeURIComponent(txtReason); wD_restoreStr=txtReason; // text to be restored in case of failure wD_restoreLoc='whyAbuse'+postId+'.'+answerId; // id of element where text should eb included document.getElementById('whyAbuse'+postId+'.'+answerId).value='';// alert(url); wD_ajaxInsert(url,'js'); if(!true){ if(false) app.location('tc-changed://'); else window.location.href = 'tc-changed://'; } }function wD_closeAnswers(postId){ document.getElementById('wD_Answers'+postId).style.display='none'; document.getElementById('btnOpenAnswers'+postId).style.display='block'; wD_resizeIframe();}function wD_removeRate(postId,answerId,userId){ var url='xreg=3&userId='+userId+'&postId='+postId+'&answerId='+answerId+'&tcLanguage=en'; wD_ajaxInsert(url,'js'); if(!true){ if(false) app.location('tc-changed://'); else window.location.href = 'tc-changed://'; } } function wD_rate(postId,answerId,value,wordId,userId){ /* new function so it will not be called again */ if(answerId==0){ document.getElementById('wD_rateUpPost'+postId).onclick = function() {wD_alert('You already rated this!',postId,answerId);}; document.getElementById('wD_rateDownPost'+postId).onclick = function() {wD_alert('You already rated this!',postId,answerId);}; }else{ document.getElementById('wD_RateUpAnswer'+answerId).onclick = function() {wD_alert('You already rated this!',postId,answerId);}; document.getElementById('wD_RateDownAnswer'+answerId).onclick = function() {wD_alert('You already rated this!',postId,answerId);}; } var url='xreg=3&wordId=26714'+'&userId='+userId+'&postId='+postId+'&answerId='+answerId+'&rating='+value+'&tcLanguage=en'; wD_restoreStr=''; // clear any text wD_restoreLoc=''; // clear id of element wD_ajaxInsert(url,'js'); if(!true){ if(false) app.location('tc-changed://'); else window.location.href = 'tc-changed://'; } }function wD_checkLenght(strType,Id){ var x=document.getElementById(strType+Id).value; document.getElementById(strType+'Lenght'+Id).innerHTML = 'Still place for '+ (3000 - x.length) +' characters'; wD_resizeIframe(); return;}function wD_checkPostLength(postId){ var ind=''; if(postId!=0){ ind+=postId; } wD_checkLenght('newComment',ind); document.getElementById('wD_warning'+ind).innerHTML='';}function wD_checkAnswerLength(Id){ wD_checkLenght('newAnswer',Id); document.getElementById('wD_warningAnswer'+Id).innerHTML='';} function wD_autoFill(el,v){ if(el.value==v){ el.value = ''; el.style.color='#333'; } /* else if(el.value==''){ el.style.color='#b2adad'; el.value=v; } */}function wD_resizeIframe(){ /* avoid resizing if it is not an iframe */ try{ var iFrameID = window.parent.document.getElementById('wDIframe'); } catch(err){ return; } if(iFrameID!=null){ try{ var height = document.getElementById('wD_content').offsetHeight; } catch(err){ return; } if( height>0) iFrameID.style.height = height+'px'; } }function wD_editPostAnswer(postId,answerId){ if(answerId==0) document.getElementById('editPost'+postId).style.display='block'; else document.getElementById('editAnswer'+postId+'.'+answerId).style.display='block'; wD_resizeIframe(); } function wD_getAnswerFromAI(postId){ wD_openAnswers(postId,1); var url='xreg=51&postId='+postId; document.getElementById('newAnswer'+postId).innerHTML = 'Please wait - do not close nor write here (it may take up to 1 minute to get a proposal) .......'; wD_ajaxInsert(url,'js');}

To include posts you need to register at trainchinese.com

How is 绑架 (bǎng jià) used in everyday conversation?
个学生

Show 1 reply

You you can select to receive personal notifications on the app or via email for important contributions to words that you are learning in the account settings .

Discussion of 绑架/綁架 [bǎng jià] to kidnap, to abduct (2024)

References

Top Articles
Latest Posts
Article information

Author: Jamar Nader

Last Updated:

Views: 6350

Rating: 4.4 / 5 (55 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Jamar Nader

Birthday: 1995-02-28

Address: Apt. 536 6162 Reichel Greens, Port Zackaryside, CT 22682-9804

Phone: +9958384818317

Job: IT Representative

Hobby: Scrapbooking, Hiking, Hunting, Kite flying, Blacksmithing, Video gaming, Foraging

Introduction: My name is Jamar Nader, I am a fine, shiny, colorful, bright, nice, perfect, curious person who loves writing and wants to share my knowledge and understanding with you.