有人可以帮我处理 CSS。我有一个列表,我希望列表看起来像下拉列表,它是白色背景,有一个滚动条列表等。
这是我的 HTML 代码
<script>
$('document').ready(function(){
$('#textin1').click(function() {
var pos = $('#textin1').offset();
pos.top += $('#textin1').width();
$('#dropdown').fadeIn(100);
return false;
});
$('#dropdown li').click(function() {
$('#textin1').val($(this).text());
$(this).parent().fadeOut(100);
});
});
</script>
<input id="textin1" name="textin1" type="text" style="width:72px;">
<ul id="dropdown">
<?php
//display dropdown time for from
$start = strtotime('12:00am');
$end = strtotime('11:55pm');
for ($i = $start; $i <= $end; $i += 300){
$timerfrom = date('H:i', $i);
echo '<li>' . $timerfrom. '</li>' ;
}
?>
</ul>