答案 0 :(得分:0)
这是你的答案:
<select id="choice">
<option value="">--Select any value--</option>
<option value="hello">Hello</option>
<option value="hi">Hi</option>
<option value="bye">Bye</option></select><h2 id="here">...</h2>
<style type="text/css"> #here{
opacity: 0;
-webkit-transition: .6s;
}
</style>
<script type="text/javascript">
var choice = document.getElementById("choice");
var here = document.getElementById("here");
choice.addEventListener("change", alerte);
function alerte(){
here.style.opacity = '1';
here.innerHTML = "The value is : "+choice.value;
}</script>
选择是您的select * id。
答案 1 :(得分:0)
我解决了自己的问题。我的代码工作得很好,除了我没有定义select
元素的id。让这成为所有人的教训。 PROOFREAD,PROOFREAD,PROOFREAD!