liferay中写模板遇到的IE和FIREFOX不兼容的题1

<script type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<div valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr>
<td height="20" width="100%">
<select name="Select" onchange="MM_jumpMenu('parent',this,0)" style="width:100%">
<option value="$Value_9.getData()">$Select_9.getData()</option> </SELECT></td>
<td align="left"><a href="$Select_ImageLink.getData()"><img src="$Select_Image.getData()"/></a></td>
</tr> </table> </div>
这是模板中的一段代码,在firefox中能够正常显示,可是到了ie7中就显示不出来下拉框,很是郁闷。知道firefox和ie有很多东西不能够兼容,在网上搜了一下也没有人能够全知道的,只有遇到一点发现一点,这是我后来测试了半天发现的结果。IE7中不能当有两列的时候如果其中一列写了with=100%那么就出现在问题,第一列会不显示出来,在firefox就不会出现这个问题,还有“//-->”因为是在editplus中自动生成的他带了“//”没想到这个居然后成portlet页面后居然报错,如果仅仅把这一段拿到IE中可能不会出错,可是如果由portlet生成的话IE7就会出错了。

你可能感兴趣的:(IE,firefox)