只能在IE核浏览器上运行,360设置一下应该可以<html>
<head>
<body>
<table width="600" height="400" cellpadding="0" cellspacing="0" border="1" bordercolordark="#000000" id="table" style="font-size:16px; color: #000000;font-weight:bold;" >
<script>
 function GetALine( )
{
   var fso, f, s;
   s = "";
   fso = new ActiveXObject("Scripting.FileSystemObject");
   f = fso.OpenTextFile('d:\\info.txt', 1, false);
   var ss=[]
   while (!f.AtEndOfStream){
    ms= f.ReadLine( ).match(/name:([^|]+)\|phone:(.+)/);
    document.write(
    '<tr><td >',ms[1] ,'</td><td width="259" >',ms[2],'</td></tr>' 
    );
    }
   f.Close( );
}
GetALine();
</script>
</table>
</head>
</html>