1、给链接添加下划线
核心知识点:
<style>下划线样式text-decoration:underline/none;//有下划线、无下划线
js的style方式:对象数组.style.textDecoration=‘underline’;
2、关闭窗口的X链接
知识点:
在windows对象中,有个close()方法。windows.close()可以关闭窗口。
点击 <a href="#" id="id-x-link">X</a> 关闭窗口
</body>
<script type="text/javascript">
var xLink = document.getElementById("id-x-link");
xLink.onclick = function() {
window.close(); //关闭窗口
return false; //返回
};
</script>
这是关闭整个页面窗口windows。我想关闭有个小弹窗呢?
使用 this.hide();
3、动态修改一个链接的地址