请实现一个验证输入的功能,当输入中为空,失去焦点时弹出对话框提示“input cannot be empty”。 20
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)+提问者悬赏20(财富值+成长值)
展开全部
<script>
function inputfocus(it)
{
it.style.background='yellow';
}
function inputblur(it)
{
it.style.background="white";
if(it.value==""){
alert("input cannot be empty");
}
}
</script>
<input onfocus="inputfocus(this)" onblur="inputblur(this)"/>
<button onclick="click_button()">click me</button>
function inputfocus(it)
{
it.style.background='yellow';
}
function inputblur(it)
{
it.style.background="white";
if(it.value==""){
alert("input cannot be empty");
}
}
</script>
<input onfocus="inputfocus(this)" onblur="inputblur(this)"/>
<button onclick="click_button()">click me</button>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询