无法正确放置HTML5 Slider输出

时间:2013-04-05 17:46:18

标签: css html5 html positioning rangeslider

我不完全确定如何正确地表达这个问题,我为此道歉。 我想在这里发生的是“输出”显示在滑块旁边,而不是在它下面。

要查看错误:alainbruno.nl/form.html

无论如何,我只是从HTML5开始,到目前为止这是代码:

<!DOCTYPE html>
<html lang = "en">
<head>
<title>Character Creation</title>
</head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
    $(function(){
        //Range
        var val     = $('#slider').val();
            output  = $('#output');

        output.html(val);

        $('#slider').on('change', function(){
            output.html(this.value);
        });
    });
</script>
<body>
<h1>Form</h1>
<form>
<fieldset>
<legend>Appearance</legend>
<p>
<label>
Select Race:
</label>
<select id="Race">
<option value="human">Human</option>
<option value="faela">Faela</option>
<option value="domovoi">Domovoi</option>
<option value="arcon">Arcon</option>
<option value="tsaaran">Tsaaran</option>
</select>
</p>
<p>
 <label>Select Gender</label>
<select id="Gender">
<option value="male">Male</option>
<option value="female">Female</option> 
<option value="other">Other</option>
</select>
</p>
<p>
<label for="range">Select Age:</label> <input type="range" min="14" max="60" id="slider"     value="10" name="range"> <div id="output"></div>
</p>
</fieldset>
</form>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

只需将保存该值的<div>设为<span>,即可显示inline

<p>
    <label for="range">Select Age:</label> 
    <input type="range" min="14" max="60" id="slider" value="10" name="range"> 
    <span id="output"></span>
</p>

请参阅this Plunk: http://plnkr.co/edit/ELffjF?p=preview

或者,您可以使用css将<div>设置为display:inline,但这是一个反模式恕我直言,看作<span>存在,默认情况下{ {1}}