摘要:
mysqld: Can not perform keyring migration : Invalid –keyring-migration-source option. 这两天登录本地mysql客户端出了一个问题:mysqld: Can not perform keyring migration 阅读全文
摘要:
/*包含以下四种的链接*/ a { text-decoration: none; } /*正常的未被访问过的链接*/ a:link { text-decoration: none; } /*已经访问过的链接*/ a:visited { text-decoration: none; } /*鼠标划过( 阅读全文
摘要:
第一种超级省事的方法就是利用正则方法如下: //获取get传值的方法 function getQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.sea 阅读全文
摘要:
1.情况说明:在用apache建立web环境启动的时候会出现如下错误,提示在不能载入httpd-ahssl.conf模块,于是到htttpd.conf配置文件中把Include conf/extra/httpd-ahssl.conf这条语句注释掉apahce正常启动(还要修改serverroot和d 阅读全文
摘要:
在web开发中,经常会用到iframe,难免会碰到需要在父窗口中使用iframe中的元素、或者在iframe框架中使用父窗口的元素。js在父窗口中获取iframe中的元素1.格式:window.frames["iframe的name值"].document.getElementById("ifram 阅读全文