我想阅读html的内容,我需要用所需的文本来更改它

dfddblmv  于 2021-06-21  发布在  Mysql
关注(0)|答案(7)|浏览(285)
<!DOCTYPE html>
<html>
<head>
  <meta charset="ISO-8859-1">
  <title id="title1">Amazon Home</title>
</head>
<body>
  <p id="p1">Hello World</p>
  <form action="Translate" method="post">
    <label id="l1">UserName</label><input type="text" name="uid"></br></br>
    <label id="l2">Password</label><input type="password" name="pwd"></br></br>
    <input type="submit" value="submit" id="sub">
  </form>
  <p id="p2">Some text here</p>
</body>
</html>

如何将上面html的内容(比如amazon home、hello world、用户名、密码、提交、一些文本)获取到servlet或jsp。。。。在我的数据库中,我有另一种语言的内容的等价文本,如下所示。因此,如果我把这些字符串从html放到任何层,那么我必须用另一个字符串(在我的数据库中)替换内容(不使用类似javascript的
document.getElementById("l1").innerHTML="Nom d'utilisateur";) `-----+

gfttwv5a

gfttwv5a2#

---------+ | id | f_key | f_value | +----+

np8igboo

np8igboo5#

---------+ | 1 | Hello_World | Bonjour le monde | | 2 | UserName | Nom d'utilisateur | | 3 | Password | mot de passe | | 4 | submit | soumettre | | 5 | Amazon_Home | Amazon Accueil | +----+

hvvq6cgz

hvvq6cgz6#

使用jsp中的资源包根据您的案例更改文本

相关问题