我是 jQuery 和 node.js 的新手,这个问题困扰了我几个小时,我搜索了 stackoverflow 并用谷歌搜索但找不到解决方案。
我正在 jQuery 中测试这个“hello world”示例,并尝试使用 node.js 运行它,但它不起作用。
这是我的 node.js 服务器代码:
var express = require('express');
var fs = require("fs");
var app = express.createServer(express.logger());
var path = require('path');
var indexText = fs.readFileSync("test.html");
app.use('/jquery', express.static(__dirname + '/jquery'));
app.get('/', function(request, response) {
response.send(indexText.toString());
});
var port = process.env.PORT || 8080;
app.listen(port, function() {
console.log("Listening on " + port);
});
如您所见,我尝试使用 express.static() 告诉 node.js jQuery lib 所在的位置。这是 test.html 的 html:
<html>
<head>
<title>jQuery Hello World</title>
<script type="text/javascript" src="/jquery/jquery-1.2.6.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function(){
$("#msgid").html("This is Hello World by JQuery");
});
</script>
This is Hello World by HTML
<div id="msgid">
</div>
</body>
</html>
它应该打印:
这是 HTML 的 Hello World 这是 JQuery 的 Hello World
但它只从 HTML 打印 hello
这个问题可能很愚蠢,但我是新手,所以我需要你的帮助。谢谢你。