我需要用内联Javascript代码来帮助这个HTML。问题是如何通过另一个FORM FIELD将FORM SELECT FIELD元素的内容传递给javascript函数?
<form name="bidForm" id="bidForm">
Select your bid amount<br />
<select name="newBid" id="newBid">
<option value="88">88</option>
<option value="99">99</option>
</select>
<input type="button" value="Place your Bid"
onclick="alert(document.getElementById(newBid1).value);" />
</form>
您只需要正确地传入ID,除此之外,您所做的一切都很好:
<input type="button" value="Place your Bid"
onclick="alert(document.getElementById('newBid').value);" />