我正在尝试使用chrome中的一个下拉列表呈现一个简单的jsp页面。在正常的Web视图中,它工作正常。但是,当我切换工具栏并单击下拉列表时,我无法查看选项,而是出现黑色块。我正在附加我的jsp代码片段和显示问题的屏幕截图。
请帮我解决这个问题。
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<style type="text/css">
select {
width:100px;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<select id="select">
<option value="test">sssssssss</option>
<option value="test2">ttttttttt</option>
</select>
</body>
</html>
当我点击下拉列表时,我看不到选项,而是在页面中出现一个小黑块: