只是把一个简单的 html 网页放在一起,我想添加一个下拉框,我可以在其中选择一个选项,它会根据选择的内容显示文本。
到目前为止我有这个。我知道我可能不得不使用 javascript,但我不知道从哪里开始。
<html>
<head>
<title> My webpage </title>
</head>
<body>
<h1> Times Tables! </h1>
<p> Click on the drop down box to select the tables you want to see </p>
<select>
<option value="Please select">Please select</option>
<option value="1x0 =0 1x1 =1 1x2 =2 1x3 =3">1 time table</option>
<option value="2 times table">2 times table</option>
<option value="3 times table">3 times table</option>
<option value="4 times table">4 times table</option>
<option value="5 times table">5 times table</option>
<option value="6 times table">6 times table</option>
<option value="7 times table">7 times table</option>
<option value="8 times table">8 times table</option>
<option value="9 times table">9 times table</option>
<option value="10 times table">10 times table</option>
<option value="11 times table">11 times table</option>
<option value="12 times table">12 times table</option>
</select>
<p>
</p>
</body>
</html>
谢谢
最佳答案
提供一个 ID 以选择标签。就像
<select id="selected">
然后是 jQuery 代码:
<script type="text/javascript">
$(document).ready(function(){
$('#selected').change(function(){
alert($(this).val());
});
</script>
关于javascript - HTML 下拉框重定向,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33563983/