我写了这个示例服务器,
runServer = function(){
var http = require("http");
http.createServer(function (request, response) {
request.on("end",
function ()
{
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello HTTP!');
});
}).listen(8075);
}
现在我想从一个 html 页面运行这个服务器 onClick,有可能吗?如果是那怎么办??