本文介绍了jquery选择不在chrome和IE中工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! Hii,Hii ,<link href="../../css/chosen.css" rel="stylesheet" /><script src="../../js/jquery-1.10.2.js"></script><script src="../../js/chosen.jquery.js"></script><script type="text/javascript"> $(document).ready(function () { $(".TwoColumn_Form_SelectField").chosen(); $(".chzn-select-deselect").chosen({ allow_single_deselect: true }); });</script><div class="TwoColumn_Form_Wrap" id="divCompany" runat="server"> <div class="TwoColumn_Form_Wrap_Lft"> Company </div> <div class="TwoColumn_Form_Wrap_Rht"> <asp:DropDownList ID="ddlCompany" runat="server" CssClass="TwoColumn_Form_SelectField" AutoPostBack="true" önSelectedIndexChanged="ddlCompany_SelectedIndexChanged"> </asp:DropDownList> </div> </div> 这是我的代码。 。 当我运行它在firefox中看起来很完美,所有填充下拉菜单, 但是当我在chrome中运行同样的时候..我cant c下拉列表中的任何值,它会滑动为空白This is my code ..when i run this it looks perfect in firefox with all fill dropdowns ,but when i run this same in chrome .. i cant c any value inside dropdown , it slides as blank推荐答案 这是我的代码。 。 当我运行它在firefox中看起来很完美,所有填充下拉菜单, 但是当我在chrome中运行同样的时候..我cant c下拉列表中的任何值,它都会滑动为空白This is my code ..when i run this it looks perfect in firefox with all fill dropdowns ,but when i run this same in chrome .. i cant c any value inside dropdown , it slides as blank 这篇关于jquery选择不在chrome和IE中工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-16 06:19