我无法将下拉列表获得的值显示出来。我昨天刚开始学习 JS……干杯![eta] 问题是我的代码有什么问题,因为它没有按我想要的那样工作。
<!doctype html>
<html><body>
<script src="jquery.js">
$(function checkDropdown() {
var selects= $("#id1 option:selected").val();
document.getElementById("filler").innerHTML= selects;
});
</script>
<form name="f1">
<select id="id1">
<OPTION Value="none">None</OPTION>
<OPTION Value="one">One</OPTION>
<OPTION Value="two">Two</OPTION>
</select></form>
<p id="filler">Replace this text</p>
</br></br>
<button onClick="checkDropdown()"> CLICK ME </button>
</form>
</body></html>
我最终想用实际数字替换选项值并将它们相乘。