使用 onblur 属性在 HTML 中的元素失去焦点时执行脚本。您可以尝试运行以下代码来实现onblur属性 -
<!DOCTYPE html>
<html>
<body>
<p>Type text below!</p>
Country: <input type = "text" name = "myid" id = "myid" onblur = "display()">
<script>
function display() {
var str = document.getElementById("myid");
str.value = str.value.toupperCase();
}
</script>
</body>
</html>
以上就是当HTML元素失去焦点时执行脚本?的详细内容,更多请关注编程之家其它相关文章!