html提交按钮改字的方法:1、直接修改value属性,代码如“onclick="getPasswd()" value="显示"...”;2、修改button的innerHTML,代码如“type="button" onclick...”。
本文操作环境:windows7系统、HTML5版、Dell G3电脑。
修改html中button显示的文字
1. 6e63ca93929ae453ed909631d485d875 实现密码输入框的可见和隐藏
直接修改value属性即可
<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. bb9345e55eb71822850ff156dfde57c8 实现视频的播放和暂停
修改button的innerHTML
<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提交按钮怎么改字的详细内容。更多信息请关注PHP中文网其他相关文章!