将选项列表转换为星形

时间:2014-01-23 12:52:30

标签: html css

我正在使用这部分代码来评价我从MySQL形成的一些文章。费率是我的选项列表,有人可以用数字1,2,3评价。有可能将此列表转换为3星(带有单选按钮,图像或其他内容)?

<form id="ratethis-<?=$PK?>" action="rate.php?idP=<?=$idPK?>"method="post">
 <select name="rating">

 <option value="1">1</option>
 <option value="2">2</option>
 <option value="3">3</option>
 </select> <br> 
 <input type="submit" value="Rate this!"/><br><br>
 </form>

2 个答案:

答案 0 :(得分:2)

在html上:

<ul class="rating">
<span class="strong"><strong><li class="one"><a href="#">1 Star</a></li></strong></span>
<span class="strong"><strong><li class="two"><a href="#">2 Stars</a></li></strong></span>
<span class="strong"><strong><li class="three"><a href="#">3 Stars</a></li></strong></span>
<span class="strong"><strong><li class="four"><a href="#">4 Stars</a></li></strong></span>
<span class="strong"><strong><li class="five"><a href="#">5 Stars</a></li></strong></span>
</ul>

关于CSS:

.rating {

margin: 0;

padding: 0;

list-style: none;

clear: both;

width: 75px;

height: 15px;

background-image: url(stars.gif);

background-repeat: no-repeat;

position: relative;

}

.rating li {

text-indent: −9999em;

float: left; /* for IE6 */

}

.rating li a {

position: absolute;

top: 0;

left: 0;

z-index: 20;

height: 15px;

width: 15px;

display: block;

}

.rating .one a {

left: 0;

}

.rating .two a {

left: 15px;

}

.rating .three a {

left: 30px;

}

.rating .four a {

left: 45px;

}

.rating .five a {

left: 60px;

}

也许这个链接可能会有所帮助:

How to create a star ranking system using css

答案 1 :(得分:0)

是的,选择很多:

  1. 只需使用oldskool链接:

    <a href="rate.php?idP=<?php echo $idPK; ?>&rating=1"><img src="star.jpg" /></a>
    <a href="rate.php?idP=<?php echo $idPK; ?>&rating=2"><img src="star.jpg" /></a>
    <a href="rate.php?idP=<?php echo $idPK; ?>&rating=3"><img src="star.jpg" /></a>
    

    确保您从$_GET而不是$_POST获得评分,但

  2. 使用javascript(本例中为jquery):

    <img src="star.gif" class="rating" rel="1" />
    <img src="star.gif" class="rating" rel="1" />
    <img src="star.gif" class="rating" rel="1" />
    
    $('.rating').on('click', function() {
        $.post('rate.php?idP=<?php echo $idPK; ?>', {rating: $(this).attr('rel') }, function() { alert('rating saved'); }
    });
    
  3. 发挥创意并发布一些代码