jQuery实现监听下拉框选中内容发生改变操作示例

前端之家收集整理的这篇文章主要介绍了jQuery实现监听下拉框选中内容发生改变操作示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了jQuery实现监听下拉框选中内容发生改变操作。分享给大家供大家参考,具体如下:

jQuery代码部分:

$(document).ready(function(){ var defaultId = "${defaultSelected}"; var defaultTime = "${timeName}"; $("select option").each(function(){ if($(this).val()==defaultId || $(this).val()==defaultTime){ $(this).attr("selected","selected"); } }); $("#all").change(function(){ //alert(document.getElementById("allItem").selected); if(document.getElementById("allItem").selected == true){ $("#timeText").hide(); $("#timeSelect").hide(); }else{ $("#timeText").show(); $("#timeSelect").show(); } }); });

HTML部分:

Select a project:

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》及《

希望本文所述对大家jQuery程序设计有所帮助。

原文链接:https://www.f2er.com/jquery/31521.html

猜你在找的jQuery相关文章