我搜索了我的 *ss ,但无法在线找到答案或自己编写正确的代码。我确实设法让它在 jQuery 中工作,但我需要让它与 YUI 2.7 一起滚动。
我想做什么?获取下拉菜单的选定值并将其写入另一个表单字段。
这适用于 jQuery:
function displayVals() {
var subjectValue = $("select").val();
var subjectName = $("select option[value='"+subjectValue+"']").text()
// set the value of another form field
$("#TextInput_subject").val("Technische ondersteuning > " + subjectName);
}
$("#SelectionInput_reason").change(displayVals);
displayVals();
// the select menu we are trying to get the selection from..
<select id="SelectionInput_reason">
<option value="">--</option>
<option value="27" name="Televisie" >Televisie</option>
<option value="28" name="Internet" >Internet</option>
<option value="29" name="Mobiel Internet" >Mobiel Internet</option>
<option value="30" name="Telefonie" >Telefonie</option>
<option value="47" name="Horizon" >Horizon</option>
<option value="48" name="Online TV" >Online TV</option>
</select>
这就是我在 YUI 中得到的结果,我只得到了所选选项的 ID:
getValue = function(e) {
var selectedValue = this.value;
alert(selectedValue);
}
YAHOO.util.Event.addListener("SelectionInput_reason", "change", getValue);
我真的无法再进一步了,这真的很令人沮丧!希望有人能指出我正确的方向。