Home >Backend Development >PHP Tutorial > 求解 jquery css选择器 在ie6中会失灵

求解 jquery css选择器 在ie6中会失灵

WBOY
WBOYOriginal
2016-06-13 13:00:05770browse

求解 jquery css选择器 在ie6中会失效

本帖最后由 beiyong2233 于 2012-11-02 11:27:29 编辑 是神马原因?贴出代码!在火狐下良好
<script> <br /> $(document).ready(function(){<br /> $('#type1').change(function(){//当id为send按钮被按下时 执行该函数<br /> $.post("aa.php", { //预提交的页面使用get方法提交<br /> act : "t1",<br /> tid2 : $("#type1").val() ,// 提交的内容 <br /> }, function (data, textStatus){<br /> $("#t2").html(data); // 把返回的数据添加到页面上id为t2的标签内<br /> }<br /> );<br /> })<br /> })<br /> <br /> </script> 

求大神赐教!
------解决方案--------------------
用ie的f12键调试看看
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn