分类 Javascript 对应的文章如下

在BootStrap的modal中使用Select2,魔态窗口使用select2筛选下拉框。select2显示在modal窗口的下面,因为select2的z-index小于modal。感觉是这个框架的bug,层级被覆盖了。起初我尝试在浏览器一个一个修改 z-index:属性,发现modal窗口的属性.modal-backdrop {  z-index: 2040 !important;}.modal {  z-index: 2050 !important;}你强制这么高的...

阅读全文 »

1,在页面添加location.hash可实现无论哪个页面跳到该页面都跳到固定位置。<script language="javascript">               location.hash="#azhi";  </script><html><head></head><body><div id="azhi"></div></body></html>2,如果是点击跳转到本页某位置,<a href="#锚点id"></a>3,如果是点击跳转到其它...

阅读全文 »

<a href="javascript:" onclick="self.location=document.referrer;">返回上一页并刷新</a> 

阅读全文 »