我是JavaScript新手,我正在使用Chosen來完成此操作。我希望將所有在下拉框中選中的字段顯示在我的結尾提醒框中(單擊我框)。如何獲取警報框以顯示所有下拉選擇?
我該如何去做這件事?
這裏是我的代碼的鏈接:http://jsfiddle.net/nikole/Xp338/37/
這裏是我的代碼的HTML部分:
<script>
function outCome()
{
alert('Hello! I am an alert box!');
}
</script>
<div id="Task" name="tBox"></div>
<br/><br/>
<div id="Urgency" name="uBox"></div>
<div id="Time"></div>
<div id="Who"></div>
<div id="When" name="whenBox"></div>
<br/><br/><br/><br/>
<button type="button" onclick="outCome()">Let's do it! Click to send</button>
我真的需要標籤的名稱? 非常感謝那些幫助我的人。正如我所說我是一個新手,真的很想學習JavaScript。
+1好答案... – Sandy
這真棒!非常感謝幫助新手。我將使用這個版本,因爲你告訴我如何添加功能,我可以告訴用戶他們的結果是什麼(選定或您選擇)。非常感謝,我非常感激。 – Nikole