Use href to automatically select an option from a dropdown list
P粉358281574
P粉358281574 2024-02-26 09:24:54
0
1
400

I'm trying to make a dropdown automatically select an option based on the href (stored in the address bar) obtained from the button pressed on the previous page. I've tried looking up this question but can't seem to find anything relevant, so I can only assume my wording is wrong or this isn't possible.

This is my code from index.html

<div class="logo-row">
   <img src="./assets/img.png" onclick="function();" class="logo"/>
   <a href="./page1.html#sprites"><img src="./assets/sprites_placeholder.png" class="button p1"/></a>
   <a href="./page1.html#models"><img src="./assets/models_placeholder.png" class="button p1"/></a>
   <a href="./page1.html#textures"><img src="./assets/textures_placeholder.png" class="button p1"/></a>
   <a href="./page1.html#sounds"><img src="./assets/sounds_placeholder.png" class="button p1"/></a>
</div>

This is the code in page1.html

<div class="custom-select">
   <label class="resource">Resource:</label>
   <select id="selectBox" onchange="changeResource();">
      <option value="1" id="sprites">Sprites</option>
      <option value="2" id="models">Models</option>
      <option value="3" id="textures">Textures</option>
      <option value="4" id="sounds">Sounds</option>
  </select>
</div>

I'm not entirely sure this describes what I'm trying to achieve, but when I tested it with just plain text, it loaded just fine.

P粉358281574
P粉358281574

reply all(1)
P粉086993788

You can get the hash ID from the url and then set the selected element from the dropdown using javascript

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!