要实现网站重定向到列表上的随机链接,可以按照以下步骤进行:
以下是一个示例的实现过程:
var links = [
"https://example.com/link1",
"https://example.com/link2",
"https://example.com/link3",
// 添加更多链接...
];
function getRandomLink() {
var randomIndex = Math.floor(Math.random() * links.length);
return links[randomIndex];
}
const express = require('express');
const app = express();
app.get('/redirect', (req, res) => {
var randomLink = getRandomLink();
res.redirect(randomLink);
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
<button onclick="redirect()">点击跳转</button>
<script>
function redirect() {
window.location.href = '/redirect';
}
</script>
这样,当用户点击按钮时,网站就会重定向到列表中的随机链接。请注意,以上示例仅为演示目的,实际实现可能因具体情况而有所不同。
领取专属 10元无门槛券
手把手带您无忧上云