我正在寻找将随机html页面(从包含所有页面的文件夹)加载到div中的正确方法。 这就是我现在所做的:
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
$(function() {
$("#CONTENTS").load("contenuti/1.html");
});
</script>
</head>
<body>
<div id="CONTENTS"></div>
</body>
</html>
我认为正确的方法是转换“* .html”中的“1.html”,然后插入随机代码。 有谁可以帮助我?
答案 0 :(得分:3)
你可以这样做:
$(function() {
var max = 10, min = 1;
$("#CONTENTS").load("contenuti/"+Math.floor(Math.random()*(max-min+1)+min)+".html");
});
以上将采用从1到10命名的随机html页面。
随机数码代码礼貌:Francisc对问题Generate random number between two numbers in JavaScript
的回答