我希望定義一個變量定義一個變量:的JavaScript從點擊列表元素的ID
var alumniName = // id from a list (example: <li id="JoeJohnson">Joe Johnson</li>).
我想要的變量,以匹配訪問者點擊了什麼。 (例如:
<li id="JoeJohnson">Joe Johnson</li>
// when a visitor clicks on the name Joe Johnson... the variable = JoeJohnson
<li id="FredSmith">Fred Smith</li>
// when a visitor clicks on the name Fred Smith... the variable = FredSmith
等)
任何幫助深表感謝-Thanks-
[你嘗試過什麼?](http://mattgemmell.com/2008/12/08/what-have-you-tried/) – j08691
你使用JavaScript庫嗎? (順便提一下,你的問題是超級基礎的,你可能應該首先閱讀關於JavaScript事件處理的教程。) –