gpt4 book ai didi

javascript - 文本框的背景颜色

转载 作者:行者123 更新时间:2023-11-28 17:38:28 26 4
gpt4 key购买 nike

我希望在单击提交按钮后文本框中的背景颜色至少保持 5 秒

但是我一点击提交按钮它就消失了。

这是我的代码...

<!DOCTYPE>
<html>
<head>
<title>Text Boxes With Aplhabets </title>
</head>
<body>`enter code here`

<script type="text/javascript">

frm.alphabets.value="";
function AllowAlphabets(){
if (!frm.alphabets.value.match(/^[a-zA-Z]+$/) )
{

frm.alphabets.focus();
frm.alphabets.style.background="Red";
//alert("Please Enter only alphabets");
}

}
</script>

<form name="frm" onsubmit="return AllowAlphabets()">
Enter Aplhabets: <input type="text" name="alphabets" />
<input type = "submit" value = "Submit">
</form>
<br;>
</body>
</html>

最佳答案

使用setTimeout()

例子:

setTimeout(myFunction, 2000);

setTimeout(function () {

//code here
}, 2000);

引用:MDN

关于javascript - 文本框的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24650295/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com