我决定学习jee,我正在创建一个jsp文件,但我注意到一些非常奇怪的东西,当我在eclipse的内部浏览器上显示我的文件时,我的下拉列表工作但是下拉列表在Torch上不起作用或者Internet Explorer,我试图取消其他所有内容以找出问题的来源;我找到了一些东西,首先,如果你们注意到了这些代码,请点击这里:
<?xml version="1.0" encoding="UTF-8" ?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
<jsp:directive.page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" session="false" />
<jsp:output doctype-root-element="html" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" omit-xml-declaration="true" />
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Insert title here</title>
<meta charset="utf-8"></meta>
<meta name="viewport" content="width=device-width, initial-scale=1"></meta>
<link rel="stylesheet" href="Bootstrap/css/bootstrap.css"></link>
<link rel="stylesheet" href="Bootstrap/css/bootstrap.min.css"></link>
</head>
<body>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Dropdown Example
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">HTML</a></li>
<li><a href="#">CSS</a></li>
<li><a href="#">JavaScript</a></li>
</ul>
</div>
<script src="https://code.jquery.com/jquery-1.10.2.js" /> script src="https://code.jquery.com/ui/1.11.2/jquery-ui.js"/>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" />
<div>test</div>
</body>
</html>
</jsp:root>
好吧,代码对我来说似乎很简单和正确,但是当我尝试在Torch上显示它并且我检查它时,我发现了这个:
the problem found in the inspection of the element
你可能已经注意到了:
&#34;测试&#34;用于调试的单词没有显示
脚本标记是否已关闭,似乎是关闭了一个正文标记然后是html一个?
我已尝试将其添加到我手中,并在Torch上获得一个空白页面,但仍可在eclipse的内部浏览器中使用。
伙计我觉得自己很愚蠢,因为我错过了一些显而易见的事情,或者我不知道,如果你有任何建议,就像你想的那样显而易见并说出来:D
P.S:我已经教过编码问题,但我该怎么检查呢?