获取当前 URL:
window.location.href
创造一个 a 标签,并且赋值给它的 href 属性:
aEL = document.createElement("a")aEL.href = window.location.href;