我有一个类似
的数组 <?php
$info = array(
"cat",
"dog",
"bear"
);
?>
我在叠加层上随机输出一个字符串,如
<script>
var text = '<?php echo $info[array_rand ($info)];?>';
$(function() {
var loading = function() {
var over = '<div id="overlay">' + '<p class="info">' + text + '</p>' + '</div>';
$(over).appendTo('body');
$('#overlay').click(function() {
$(this).remove();
});
$(document).keyup(function(e) {
if (e.which === 27) {
$('#overlay').remove();
}
});
};
$('.wrapper').click(loading);
});
</script>
CSS:
#overlay {
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: #000;
opacity: 0.90;
height: 200%;
}
.info{
position: absolute;
width: 100%;
top: 25%;
height: 200px;
font-size: 50px;
color: white;
text-align: center;
}
我的问题是: 如何通过单击正文打开叠加层时如何更新var文本并获取新的随机字符串?到目前为止,var text中的字符串仅在我重新加载整个页面时更新。
Thanx:)
答案 0 :(得分:1)
使用JSON:
在页面中打印PHP数组<!-- language: lang-php -->
<?php
$info = array(
"cat",
"dog",
"bear"
);
?>
<!-- language: lang-js -->
<script type="text/javascript">
// (it's better to retrieve it in ajax)
var arr = <?php echo json_encode($info); ?>;
// 2. Roll some dice in Javascript
// Math.random returns a random value between 0 and 1
var text = "";
// wrapped in a function so you can pick new random values
function pickRandom() {
// Math.random returns a decimal number, and you need to access arrays using their indexes (0, 1, 2) not decimal numbers. Number.parseInt does the rounding.
text = arr[ Number.parseInt( Math.random()*arr.length ) ];
alert("new random value is: " + text);
}
pickRandom();
</script>
然后你的其余代码应该工作。希望这会有所帮助。
文档:
答案 1 :(得分:0)
你不能因为PHP在服务器端执行。
当您加载页面时,它会向您的浏览器发送最终的HTML,结果为<?php echo $info[array_rand ($info)];?>
。
如果安全性不是问题(游戏,银行......),您可以使用JavaScript来使用随机性。
否则您可以手动重新加载页面:
$('#overlay').click(function() {
// reload the page silently. see also http://stackoverflow.com/questions/2624111/preferred-method-to-reload-page-with-javascript
window.location.href = window.location.href;
//$(this).remove();
});