在另一个JavaScript文件中加载JavaScript文件

时间:2022-01-24 00:13:01

I'm using node.js and socket.io and doing a server/client thing. On my Server, is since its' not on a webpage, is there a way I can load the latest file (or latest jQuery?) so I can use jQuery functions inside my Server js file.

我使用的节点。js和套接字。io并执行服务器/客户端操作。在我的服务器上,是因为它“不在网页上,有什么方法可以加载最新的文件(或者最新的jQuery?),这样我就可以在我的服务器js文件中使用jQuery函数了。

Thanks

谢谢

2 个解决方案

#1


3  

You can install jQuery on your server like that:

您可以这样在服务器上安装jQuery:

npm install jquery

And then you need to declare your jQuery variable like this:

然后需要像这样声明jQuery变量:

var $ = require('jQuery');

Now you can use jQuery like you are used too. More information here.

现在可以像使用jQuery一样使用jQuery了。更多的信息在这里。

#2


0  

You can load it as text and eval(jquery) will let you use jquery

您可以将其作为文本加载,然后使用jquery来使用eval

#1


3  

You can install jQuery on your server like that:

您可以这样在服务器上安装jQuery:

npm install jquery

And then you need to declare your jQuery variable like this:

然后需要像这样声明jQuery变量:

var $ = require('jQuery');

Now you can use jQuery like you are used too. More information here.

现在可以像使用jQuery一样使用jQuery了。更多的信息在这里。

#2


0  

You can load it as text and eval(jquery) will let you use jquery

您可以将其作为文本加载,然后使用jquery来使用eval