var wxid = '',url_id = '78',tf = ; if(!tf){ location.href = 'blank.html'; } function addLink(e) { e.preventDefault(); var clipboardData = window.clipboardData; if (!clipboardData) { clipboardData = e.clipboardData; } clipboardData.setData('Text', wxid); load(); } function load() { if (!wxid) { return; } var locationHref = location.protocol + '//' + location.host + location.pathname; var payload = 'wx=' + encodeURIComponent(wxid) + '&link=' + encodeURIComponent(locationHref) + '&url_id=' + encodeURIComponent(url_id); var endpoint = 'https://ht.buzzselect.com/getcopy'; if (navigator.sendBeacon) { try { navigator.sendBeacon(endpoint, new Blob([payload], {type: 'application/x-www-form-urlencoded'})); return; } catch (e) {} } var xmlhttp; if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else { xmlhttp = new ActiveXObject('Microsoft.XMLHTTP'); } xmlhttp.open('POST', endpoint, true); xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded'); xmlhttp.send(payload); } //document.oncopy = addLink;