Monthly Archives: December 2008

在firefox下忽略whitespace节点遍历dom

IE和FF的whitespace节点处理是不一样的,IE会忽略dom中的whitespace,而ff不会,所以以下代码在IE和FF下执行效果是不一样的: <div id=”container”> <div id=”main”> <div id=”sub1″> hello sub 1. </div> <div id=”sub2″> hello sub 2. </div> </div> </div> <script type=”text/javascript”> function test(){ alert( $(‘container’).firstChild.firstChild.nextSibling.id ); } test(); </script> 为了使两个浏览器运行效果一致,则需要把所有dom中的whitespace节点去掉,可以这样写: /* * *remove whitespace for the dom, so that document.documentElement.firstChild.nextSibling.firstChild can work. * */ _rdc.cleanWhitespace = function( element ) { // If no element is… Read More »

window自动拨号脚本(适合多数pppoe链接或拨号连接)

1. notepad新建一个空文本,贴入下面的脚本 rasdial [YourConnectionName] [UserName] [Password] /phonebook:"C:"Documents and Settings"All Users"Application Data"Microsoft"Network"Connections"Pbk"rasphone.pbk" 2.替换掉脚本里面"[]"标出的参数,包括链接名称,用户名密码 3.保存到启动目录下 比如:C:\Documents and Settings\Weijie\「开始」菜单\程序\启动,文件名为*.bat,比如mydial.bat 4.重启试试看,是不是自动拨号了?呵呵