0

当我尝试编辑我的index.html文件时,发生了一些非常奇怪的事情。

我正在使用Java 中的jsp-s 和servlets, 。

当我尝试更新其中一个字段时,例如:

<!DOCTYPE html>
<html>
<head><title>Bank application</title>
<link rel="stylesheet"
      href="./css/styles.css"
      type="text/css"/>
</head>
<body>
<table class="title">
  <tr><th>Bank application</th></tr>
</table>

<br/>
<fieldset>
  <legend>Bank Account Balance</legend>
  <form action="show-balance">
    Customer ID (id001, idffffffffffffffffdsafds002, id003):
    <input type="text" name="cusdddddddddddddddddddddddddddtomerId"/><br/>
    <input type="submit" value="Sddddddddddddddddddddddddddddddddddddddhow Balance"/>
  </form>
</fieldset>

<br/>

// from here, the rest is the same as the above 

我明白了(和以前一样):

在此处输入图像描述

为什么更改 index.html 文件时,没有发生任何更改?

我正在使用 :

  1. 阿帕奇 7
  2. Xampp

谢谢

4

1 回答 1

2

浏览器将缓存 HTML 文件,除非您明确告诉浏览器刷新 (ctrl + F5)。我猜你只是在加载 HTML 的缓存版本。

于 2012-08-04T12:56:05.243 回答