var socialmedia = document.getElementById('id_socialmedia') var api = document.getElementsByClassName('socialmedia_api') if (api){ for (i = 0; i < api.length; i++) { api[i].addEventListener('click', function(e){ e.preventDefault(); var replaceRex = function (str, x) { var map = { '/' : '%2F', ' ' : '%20', ',' : '%2C', } } var product = "旅行團號: " + this.dataset.product + "%0A行程日期: " + this.dataset.depdate + "%0A"; product = product + this.href var action = this.dataset.action product = product.replace(/\:/g,'%3A') product = product.replace(/\//g,'%2F') product = product.replace(/ /g,'%20') product = product.replace(/,/g,'%2C') product = product.replace(/&/g,'%26') product = product.replace(/=/g,'%3D') if (this.hasAttribute("data-action") && this.dataset.action == 'ws_share') {suffix = (action == 'ws_share' ? 'whatsapp://send?text=' : socialmedia.value)} else if (this.hasAttribute("data-action") && this.dataset.action == 'ws_sendto') { suffix ='https://api.whatsapp.com/send?phone=85264691433&text='} var msg = suffix + product; var win = window.open(msg, '_blank'); //https://web.whatsapp.com/send?phone=85295387110 //https://api.whatsapp.com/send?phone=whatsappphonenumber&text=urlencodedtext }) } }