html提交按钮怎么改字


本文摘自PHP中文网,作者藏色散人,侵删。

html提交按钮改字的方法:1、直接修改value属性,代码如“onclick="getPasswd()" value="显示"...”;2、修改button的innerHTML,代码如“type="button" onclick...”。

本文操作环境:windows7系统、HTML5版、Dell G3电脑。

修改html中button显示的文字

1. <input type="button"> 实现密码输入框的可见和隐藏

直接修改value属性即可

1

2

3

4

5

6

7

8

9

10

11

12

13

<script type="text/javascript">

function getPasswd(){   

var passwd = document.getElementById("pwdID");   

var pwdBtn = document.getElementById("pwdBtnID");   

if(passwd.type=="password")    {

        passwd.type="text";

        pwdBtn.value="隐藏";

    }    else{

        passwd.type="password";

        pwdBtn.value="显示";

    }

}</script>

密码:<input id="pwdID" type="password"><input id="pwdBtnID" type="button" onclick="getPasswd()" value="显示">

2. <button> 实现视频的播放和暂停

修改button的innerHTML

1

2

3

4

5

6

7

8

<script type="text/javascript">function playVideo(){    var videop = document.getElementById("videoId");    var videoBtn = document.getElementById("videoBtn");    if(videop.paused){

        videop.play();

        videoBtn.innerHTML = "暂停";       

    }    else{

        videop.pause();

        videoBtn.innerHTML="播放";

    }

}</script><button id="videoBtn" type="button" onclick="playVideo()">播放</button>

3. innerHTML、innerText、outerHTML、outerText

innerHTML是符合W3C标准的属性,其它属性不推荐使用

下面是id=innerId的p几个值的对应结果

【推荐教程:《html视频教程》】【推荐教程:CSS视频教程 】

以上就是html提交按钮怎么改字的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

img在Html中是不是双标签元素

Html head标签怎么用

如何用Html给图片加边框

Html中如何实现图片排版

Html的<script>标签如何使用

关于Html colgroup标签的用法你知道哪些?colgroup用法和col的详细介绍

Html表格边框怎么去掉

分享一款Html5视频背景插件

Html如何空格

Html字体大小怎么设置

更多相关阅读请进入《Html》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...