私の選択したオプションの一部が貼られています。Javascriptで選択した値は、フォームに表示されます
私がしようとしているのは、値を追加してフォームに表示するユーザーの選択を表示することです。
私はonclickメソッドで更新したいと思います。ここに行く
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<title>Untitled Document</title>
<script type="text/javascript">
function calculateCost()
{
var event_Total = 0;
var myForm = document.forms["aaffaForm"];
var sel = document.getElement ('enter code here`ntByTagName("options").length;
var aaffa = sel.options [sel.selectedIndex].value;
if (sel.checked == '')
{
alert ('you must');
}
else
for (i=0; i<= aaffa.length[i];){
event_Total += aaffa;
return event_Total;
document.getElementById("aaffa_Total").innerHTML = eventTotal;
}}
</script>
</head>
<body>
<form id='aaffaForm'>
<select name="girlsEvent" multiple="multiple" class="girlsEvent" id="aaffaEvents" title="AA Flag Football" onclick="calculateCost()">
<option value="000" name="Select AAFFA Events" selected="selected" id="aaffaEvents0"><strong><strong>AAFFA Events</strong></strong></option>
<option value="$45.00" name="All American Flag Football Memebership" onchange="addTotal" id="aaffa1">All American Memebership</option>
<option value="$135.00" name="Early Girl's Flag Football Registration"id="aaffaEvents2">Early Girl's Flag Football Registration</option>
<option value="$150.00" name="Girl's Flag Football Registration" >All American Memebership</option>
<option value="$35.00" name="Early Mini Camp Registration Girls">Early Mini Camp Registration</option>
<option value="$40.00" name="Mini Camp Registration Girls">Mini Camp Registration</option>
<option value="$90.00" name="3 Mini Camp Special Registration Girls">3 Mini Camp Special Registration</option>
</select>
<button onclick="myFunction()" >Try It</button>
</form>
</body>
</html>
可能な複製[JavaScriptを使用して、ドロップダウンリストで選択した値を取得します?]( http://stackoverflow.com/questions/1085801/get-selected-value-in-dropdown-list-using-javascript) – PhilDulac