处理下拉菜单

发布于 2024-12-15 06:54:17 字数 654 浏览 1 评论 0原文

我的 html 中有一个下拉菜单,我想要的是当菜单更改时,调用 JS 函数发送所选值。我现在所拥有的是:

HTML/PHP:

<select name="selectSquad" class="SquadWeaponSelector" id="selectSquad" onchange="javascript:showWeaponEditorWindow(this.form.selectSquad);">
<?PHP
   $max = $squadNumbers - 1;
   $i = 0;
   while($i <= $max){
      echo "<option value=\"".$names_split[$i]."\"/>".$names_split[$i]."</option>";
      $i++;
   }
?>
</select>

JavaScript - 我想要发生的事情:

function showWeaponEditorWindow(squad){
   if(squad == "A PHP Value - Jack"){
      alert("jack selected");
   }
}

我将如何实现这一目标?

I have a drop down menu in my html, and what I want is when the menu is changed, a JS function is called sending the selected value. What I have right now is this:

HTML/PHP:

<select name="selectSquad" class="SquadWeaponSelector" id="selectSquad" onchange="javascript:showWeaponEditorWindow(this.form.selectSquad);">
<?PHP
   $max = $squadNumbers - 1;
   $i = 0;
   while($i <= $max){
      echo "<option value=\"".$names_split[$i]."\"/>".$names_split[$i]."</option>";
      $i++;
   }
?>
</select>

JavaScript - what I want to happen:

function showWeaponEditorWindow(squad){
   if(squad == "A PHP Value - Jack"){
      alert("jack selected");
   }
}

How would I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

哽咽笑 2024-12-22 06:54:17

试试这个,
您需要在您的条件中分配squad.value

<select name="selectSquad" class="SquadWeaponSelector" id="selectSquad" onchange="showWeaponEditorWindow(this);">


function showWeaponEditorWindow(squad){
   if(squad.value == "A PHP Value - Jack"){
     alert("jack selected");
  }
}

更新:

您可以使用 selectedIndex 获取选定的菜单,记住菜单索引从 0 开始;

因此将 squad.value 更改为

(squad.selectedIndex == 1) 

try this,
you need to assign squad.value in your condition.

<select name="selectSquad" class="SquadWeaponSelector" id="selectSquad" onchange="showWeaponEditorWindow(this);">


function showWeaponEditorWindow(squad){
   if(squad.value == "A PHP Value - Jack"){
     alert("jack selected");
  }
}

Update:

you could use selectedIndex to get the selected menu rember the the menu index starts at 0;

so change squad.value to

(squad.selectedIndex == 1) 
北音执念 2024-12-22 06:54:17

我建议您使用 jQuery 来实现此目的。你可以写:

$('#selectSquad').change(function(){
   var selectedValue = $(this).val();
   // Do anything here with the selectedValue variable
});

I recommend that you use jQuery for this purpose. You can write:

$('#selectSquad').change(function(){
   var selectedValue = $(this).val();
   // Do anything here with the selectedValue variable
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文