点菜器

HTML

<body>
	<div class="header">
		<input type="text" name="number"><button>随机产生</button>
	</div>
</body>

css

	.header{
			width:80%;
			height:80px;
			min-width: 505px;
			margin:0 auto;
			text-align: center;
		}
		.header input{
			height: 60px;
			width: 400px;
			border: 1px solid #ccc;
			box-sizing: border-box;
			vertical-align: middle;
			outline: none;
			text-indent: 30px;
			font-size: 20px;
		}
		.header button{
			background-color: gold;
			width: 100px;
			height: 60px;
			line-height: 60px;
			color: #FFF;
			border: 1px solid #ccc;
			vertical-align: middle;
			outline: none;
		}
		.list{
			width: 80%;
			min-height: 505px;
			background-color: beige;
			margin:0 auto;
		}
		.list span{
			display: inline-block;
			background-color: aquamarine;
			color: #333;
			padding:10px 20px;
			border-radius:5px;
			margin: 20px;
			cursor: pointer;
			
		}

JS

$(function(){
		$('button').click(function(){
			$('.list').on('click','span',function(){
				$(this).css({"backgroundColor":"red",
				"cursor":"default",
				});
			})
			$.get('diancaiqi.php',{num:$('input').val()},function(e){
				$('.list').html('');
				for(var i=0;i<e.length;i++){
					$('<span>'+e[i]+'</span>').appendTo($('.list'));
				}
			},'json')
		});
	})

PHP

最少一道

<?php 
$num = (int)$_GET['num'];
//至少产生一道菜
if($num<=0){
	$re= [
		'code' => 2000,
		'message'=>'至少产生一道菜'
	];
	echo json_encode($re);
	die;
}

随机从菜单获取

$stu_arr = explode('|',file_get_contents('caiming.txt'));
//in_array  判断是否在一个数组中
//mt_rand 产生随机数
$arr = [];  //用户保存菜单的编号
for($i=0;$i<$num;$i++){ //用于循环产生菜单编号
	$stu_num = mt_rand(0,100); //随机产生
	while(in_array($stu_num,$arr)){ //判断是否产生了相同的菜单编号
		$stu_num = mt_rand(0,99);;
	}
	array_push($arr,$stu_num);
}

菜单
caiming.txt
在这里插入图片描述


$re = []; //返回的菜单数组
foreach($arr as $k){
	array_push($re,$stu_arr[$k]);
	file_put_contents('quedingcai.txt',$stu_arr[$k],FILE_APPEND);
}
echo json_encode($re);

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值