我绝不是 javascript 程序员,所以如果有人能帮我解决这个问题,那就太好了。如果有多个这些评级部分,如下面的示例所示,它们位于同一页面上。
现在我需要将已单击的单选按钮的值发送到我的数据库,而不需要提交按钮,最好不要刷新。
<body>
<section class="rating">
<input type="radio" class="radio twenty" name="progress" value="twenty" id="twenty" <?php if($num === 1) { echo 'checked'; } ?>>
<label for="twenty" class="label">1</label>
<input type="radio" class="radio fourty" name="progress" value="fourty" id="fourty" <?php if($num === 2) { echo 'checked'; } ?>>
<label for="fourty" class="label">2</label>
<input type="radio" class="radio sixty" name="progress" value="sixty" id="sixty" <?php if($num === 3) { echo 'checked'; } ?>>
<label for="sixty" class="label">3</label>
<input type="radio" class="radio eighty" name="progress" value="eighty" id="eighty"<?php if($num === 4) { echo 'checked'; } ?>>
<label for="eighty" class="label">4</label>
<input type="radio" class="radio onehundred" name="progress" value="onehundred" id="onehundred" <?php if($num === 5) { echo 'checked'; } ?>>
<label for="onehundred" class="label">5</label>
<div class="progress">
<div class="progress-bar"></div>
</div>
</section>
</body>
我已经设置了选中单选按钮的检索,使其对应于 1 到 5 的评级,所以我目前正在使用 testdata 来显示 1 到 5 的评级。
我不一定需要所有细节,需要完成的步骤的概述已经非常有帮助。