var http=require(“http”); function onReq(req,res){ res.writeHead(200,{"Content-Type":"text/html;charset=gb2312"}); res.write( '<html>'+ '<head>'+ '<title>测试</title>'+ '<meta charset=gb2312/>'+ '</head>'+ '<body>'+ '
输出
'+ '</body>'+ '</html>' ); res.end(); } http.createServer(onReq).listen(8080);