我正在尝试从服务器端文件中调用客户端功能,我的server.js
是这样的:
var express = require('express');
const errjs = require('./public/js/popup.js');
app.post('/signin', function(req, res, next) {
passport.authenticate('local', function(err, user, info) {
if (err) return next(err)
if (!user) {
errjs.popuperror("wrong");
return res.redirect('/signin')
}
我的popup.js
代码也是这样:
function popuperror(type, message)
{
if (type == "wrong")
{
$(".login-form-container .btn-line").css({backgroundColor: "#EF5350"});
$("#loginMessage").html("Invalid Username or Password");
$("#loginMessage").animate({opacity: 1}, 100);
return (1);
}
module.exports.popuperror = errjs;
即使在前端js上使用JQuery,有没有办法做到这一点?