如何从选择列表中获取值?

时间:2014-09-17 19:48:12

标签: javascript html

我试图从选择列表中获取一个值,该列表将决定我的表单方法是get还是post。我这样做有困难。有什么建议吗?

<select name ="optionlist" form ="form" id="test">
  <option value="get">GET</option>
  <option value="post">POST</option>
</select>

<form name="input" action="" method="" id="form">
    <input type="text" name="search">
    <input name="buttonExecute" type="submit" value="Submit"/>
</form>

JS

function myFunction(input){
    alert("You typed in : " + input);
}

function load(){
    alert("Page Loaded! This is the current text in the textbox : "+ document.getElementsByName('search')[0].value);
}

func

window.onload = load;

任何帮助将不胜感激!谢谢!

2 个答案:

答案 0 :(得分:1)

首先向select元素添加一个事件监听器,以便在值改变时触发一个函数:

document.getElementById('test').addEventListener('change', setFormMethod, true);

其次,确保触发的函数更改了表单的方法属性:

function setFormMethod(e) {
  document.getElementById('form').setAttribute('method', e.target.value);
}

修改

<html>
 <head>
 </head>
 <body>
  <!-- your HTML here -->
 <script>
  // my code here
 </script>
</body>

答案 1 :(得分:0)

我相信这会起作用

$("#yourDropdownId").change(function() {
    value = $( "#yourDropdownId option:selected").val()
    if (value === 'post')
        $("#yourFormId").attr("method", 'POST')
    else
        $("#yourFormId").attr("method", 'GET') 
});