当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML readOnly属性用法及代码示例


HTML readOnly 属性表示 input/textarea 元素是只读的,这意味着您不能在 HTML 文档中修改其内容。

用法

以下是语法 -

<tagname readOnly></tagname>

让我们看一个 HTML 只读属性的例子 -

示例

<!DOCTYPE html>
<html>
<style>
   body {
      color:#000;
      height:100vh;
      background-color:#8BC6EC;
      background-image:linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      text-align:center;
   }
   input {
      display:block;
      width:50%;
      margin:1rem auto;
      text-align:center;
   }
</style>
<body>
<h1>HTML readOnly Demo</h1>
<input type="text" value="I'm an input element with readOnly property" readOnly>
</body>
</html>

输出

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML readOnly Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。