箭头键在dropDown中不起作用

时间:2013-07-30 05:03:11

标签: javascript html css jsp scrollbar

我正在开发JSP页面,它有一个comboBox / dropdown,一切正常,除非用户尝试使用箭头键(向上/向下)滚动条没有相应移动因此用户无法看到文本。我该怎么做才能让它发挥作用?

在某些论坛上,我读到如果在包装div中使用相对位置而不是绝对位置,这个问题就会解决,但它也没有用。

修改:已添加代码

<div id="_divTblcombo" class="tblDiv" style="visibility:hidden;width:265px; height:130px; position:absolute" onMouseDown="document.getElementById('myName_combo').focus()">

<table id="_tblcombo" cellpadding="0" cellspacing="0" border=0 class="mYTable" width="100%" >
<tr   id=TR onMouseOver="deHightlightRows('myName_combo');this.className='mouseOver';" onMouseOut=this.className='mouseOut';>
<td id="" align="left" nowrap onMouseDown="selectRow(this,'myName_combo','','right','id');document.forms[0].DropdownCall.value='true';document.forms[0].operation.value='getName'; document.forms[0].submit();" >---No Name---
</td>
</tr>
<tr   id=STRA onMouseOver="deHightlightRows('myName_combo');this.className='mouseOver';" onMouseOut=this.className='mouseOut';>
<td id="Stral" align="left" nowrap onMouseDown="selectRow(this,'myName_combo','Stral','right','id');document.forms[0].DropdownCall.value='true';document.forms[0].operation.value='getName'; document.forms[0].submit();" >STRALL
</td> 
</tr>

0 个答案:

没有答案