<html>
<head>
  <meta charset="utf-8">
  <title>xxx</title>
</head>
<body>
<form action="" method="post">
<!-- 不能修改且不能提交 -->
  <input type="text" name="haha" value="hehe" disabled="disabled">
<!-- 不能修改且能提交 -->
  <input type="text" name="hehe44" value="lala" readonly="readonly">
<!-- 能修改且能提交 -->
  <input type="text" name="haha2" value="hehe" >
  <input type="submit" value="tijiao">
</form>
</body>
</html>

  

相关文章:

  • 2022-01-01
  • 2022-12-23
  • 2022-01-19
  • 2021-08-30
  • 2022-12-23
  • 2021-07-13
  • 2022-02-24
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案