我为我的一个朋友开发了一种赌博网站。 为此,用户可以输入他想要下注的金额。在此之后,他点击81张图片中的一张。现在我需要得到“id”哪个盒子被点击了,我需要得到他输入的值。
如何设计表格? 我尝试使用它,但经过一些思考它没有意义:
redirect(base_url() . 'MainController/Student_Login/.$user_email.')
总而言之,当发送POST请求时,我需要获取在上面的字段中输入的值以及用户点击的用户ID。
答案 0 :(得分:1)
如果您想要点击一个框提交,只需输入type =“submit”,然后适当地设置名称和值
<form class="form-inline" method="POST" action="{{ action('Utility\PlayController@getPlay') }}">
{!! csrf_field() !!}
<div class="form-group">
<label class="sr-only" for="exampleInputAmount"></label>
<div class="input-group">
<div class="input-group-addon">
<i class="fa fa-btc"></i>
</div>
<input type="text" name="amount" maxlength="11" class="form-control" id="exampleInputAmount" value="0.00010000">
</div>
</div>
</br>
@for ($i = 1; $i <= 81; $i++)
<input class="box-input" type="submit" name="id" value="{{$i}}">
<img class="box-input-image" src="{{ asset('assets/img/box_closed.png') }}">
@endfor
</form>
这会在那里放置一个图像,因此您需要使用display:none或其他方法在CSS中隐藏框输入。或者您可以使用:在psuedo CSS选择器之后
答案 1 :(得分:0)
**use radio button behind image box using css
or
in image box set there (alt) as value then on click on image
<img src="1.jpg" height="150" onclick="setCookie(this.alt)" value="1" alt="1">
<script>
function setCookie(val)
{
document.cookie = "whichBoxIsClicked="+val;
}
</script>
//get that cookie anywhere**