vs2010调用js没问题,vs2005调用js布局错位。在vs2010中显示的下拉框完成正常,到vs2005下拉框布局就错位了,请问怎么解决啊。如下面的图片reset.css设置参数如下
#phone_number,#map,#consult,dl,dt,dd,ol,.f-yh,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}img,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,th {text-align:left;}.f-yh{font-size:100%;}q:before,q:after{content:'';}/*a{text-decoration:none; font-size:14px;}*/
a:hover{text-decoration:none;}/*top*/
.tog{width:100%;height:30px;background:url(../images/top_float_bg.png) 0 top repeat-x;position:absolute;z-index:2;cursor:pointer;
top: 0px;
left: -2px;
}
.tog span{width:159px;height:30px;margin:0 auto;line-height:4px;color:#FFF;text-align:center;display:block;background:url(../images/tog.png) 0 5px no-repeat;}
.togclose{width:100%;height:27px;background:url(../images/top_float_bg.png) 0 top repeat-x;position:absolute;z-index:2;cursor:pointer;}
.togclose span{font-family:Verdana;font-size:12px;width:159px;height:27px;margin:0 auto;text-align:center;line-height:22px;color:#FFF;display:block;background:url(../images/togclose.png) 0 5px no-repeat;}
.tog_contact{height:433px; width:100%;background:#FFF url(../images/tog_contact_bg.gif) 0 bottom repeat-x;position:absolute;z-index:1;display:none;}
.t_con_box{width:982px;margin:0 auto;height:433px;position:relative;}
.drift_left{width:478px;height:80px;border-bottom:1px solid #EAEAEA;}
.drift_left p{padding:100 100 18px 18px;line-height:28px;color:#000098;font-size:14px;}
.phone{width:478px;height:147px;}
.phone dl{width:100%;padding:20px 0 0 18px;}
.phone dl dd{width:230px;}
.phone dl dd , .phone dl dd div, .phone dl dd img, .phone dl dd h3, .phone dl dd span, .phone dl dd p{float:left;}
.phone dl dd div{width:100%;padding:10px 0 4px;}
.phone dl dd img{padding-top:4px;}
.phone dl dd h3{width:160px;color:#d30000;font-size:16px;font-weight:normal;padding-left:10px;}
.phone dl dd span{width:160px;padding-left:10px;font-family:Segoe UI;color:#8E8C8C;}
.phone dl dd p{width:100%;color:#d30000;font-family:Impact;font-size:28px;}
.phone dl dd .consult_img{padding-left:15px;}
.phone dl dd .online{float:left;width:113px;color:#3b3b3b;height:34px;line-height:34px;background:url(../images/icon_online.gif) 0 0 no-repeat;}
.phone dl dd .online q{float:left;line-height:30px;padding-left:46px;cursor:pointer;}
.phone dl dd a.online:hover{color:#D30000;}
.map{width:538px;height:297px;position:absolute;right:0;top:0;_clear:both;}
调用的js
    <link href="css/reset.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.1.4.4.min.js"></script><!--是jquery-1.4.1的压缩版,发布网站得时候可以用它速度比jquery-1.4.1快,占用的流量少-->
<script type="text/javascript" src="js/lrtk.js"></script>
lrtk.js$(function(){
$('#tog').toggle(function(){
$(this).animate({top:'433px'},320).addClass("togclose").removeClass("tog").html('<span></span>');
$('.tog_contact').slideDown(320);
},function(){
    $(this).animate({ top: '0px' }, 320).addClass("tog").removeClass("togclose").html('<span></span>');
$('.tog_contact').slideUp(320);
})
$(".menu_l_list li:last").css({"background":"none"}); 
$(".crumbNav em:last").css({"color":"#B10000","padding":"0"}); 
$(".brea_tab th:last").css({"border-right":"none"}); 
$(".serice_content .serice_list:last").css({"border-bottom":"none"}); 
})
请大家帮我看看是哪里的问题?Visual Studio 2010Visual Studio 2005JavaScript布局