摘要:
在php程序出现类似 Parse error: syntax error, unexpected end of file in xxxxxxxx on line xx 的错误。 如图 如果发现php的语法本身没有什么错误。就有可能是使用了短标签,例如: <? }?> 这种问题的解决方案是: 可以在p 阅读全文
摘要:
function sj() { //x上限,y下限 var x = 2000; var y = 1800; var rand = parseInt(Math.random() * (x - y + 1) + y); console.log(rand); } $('#date').click(func 阅读全文