比方說,我有以下鏈接和下拉菜單:更改下拉選項單擊
<a href="#contact">Send a mail to mother!</a>
<a href="#contact">Send a mail to father!</a>
<a href="#contact">Send a mail to sister!</a>
<a href="#contact">Send a mail to brother!</a>
<form id="contact">
<select id="recipient">
<option value="[email protected]">Mother</option>
<option value="[email protected]">Father</option>
<option value="[email protected]">Sister</option>
<option value="[email protected]">Brother</option>
</select>
</form>
基本上,我想每一個環節更改爲相應的選擇選項。
爲了給你一個上下文,現在我在頁面的末尾有一個表單,並且在開始時我有幾個電子郵件鏈接。當有人點擊一個鏈接時,它會滾動(錨點)到表單。該表單具有此下拉菜單以選擇收件人。我希望它不僅滾動到表單(已完成),而且還可以根據單擊的鏈接自動更改選項。
我該如何做到這一點?
[你有什麼嘗試](http://whathaveyoutried.com/)? –