See More

检测到您是内网用户,是否跳转到内部官网 rax.alibaba-inc.com 以获取更多信息?' + '

Detected that you are an Alibaba user, do you jump to the internal website rax.alibaba-inc.com for more information?'; var buttons = document.createElement('div'); buttons.style.cssText = [ 'margin-top:' + verticalGap + 'px', 'margin-bottom:' + horizontalGap + 'px', 'text-align: right', ].join(';'); var acceptBtn = document.createElement('div'); acceptBtn.style.cssText = [ 'display: inline-block', 'cursor: pointer', 'border: 1px solid #000', 'background: #000', 'color: #FFF', 'padding: ' + verticalGap + 'px ' + horizontalGap + 'px', 'margin-right:' + horizontalGap + 'px', ].join(';'); acceptBtn.innerHTML = '好'; acceptBtn.addEventListener('click', function () { window.location.href = 'http://rax.alibaba-inc.com'; }, false); var closeBtn = document.createElement('div'); closeBtn.style.cssText = [ 'display: inline-block', 'cursor: pointer', 'border: 1px solid #000', 'padding: ' + verticalGap + 'px ' + horizontalGap + 'px', 'margin-right:' + horizontalGap + 'px', ].join(';'); closeBtn.innerHTML = '不再提示'; closeBtn.addEventListener('click', function () { widget.style.display = 'none'; window.localStorage.setItem(storageKey, 'TRUE'); }, false); buttons.appendChild(acceptBtn); buttons.appendChild(closeBtn); content.appendChild(buttons); widget.appendChild(content); document.body.appendChild(widget); }