可以做改变显示:块;没有使用javascript。我想在每次打开页面时显示其中两个。但我希望它是随机的,并且每次打开页面时都会更改。

有人可以帮助我吗?

http://jsfiddle.net/WcxdR/1/

最佳答案

下面的一个将每次随机隐藏其中两个。您可以重用它以仅显示两个。

window.onload = function() {
  var ran = Math.round(Math.random() * 6);
  document.getElementById("" + ran).style.display = 'none';
  ran = Math.round(Math.random() * 6);
  document.getElementById("" + ran).style.display = 'none';
};


附注:从我的头顶上。未经测试。
附言:如果两个随机调用都给出相同的数字,则需要检查

关于javascript - 每次打开页面时是否可以更改div的显示属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8273780/

10-11 21:44