我的网站上有一个按钮,我想在按下按钮时在
index.js
中运行一个功能。
这是 index.js
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static('public'));
app.listen(3000, () => {
console.log('Listening!')
})
app.get('/', (req, res) => {
res.sendFile('index.html')
})
按钮在 index.html 中,但我想在 index.js 中运行函数 我如何与 index.js 通信以告诉它在按下按钮时运行函数?