我可以使用以下代码显示图像警告。如果用户名或密码为空。
如果鼠标悬停在警告图像上,我想显示消息。
例如;
“用户名不能为空!” 对于用户名和“密码不能为空!” 为密码。
在哪里编辑以在鼠标悬停到图像时显示消息?
我的 Javascript 代码:
function LoginButonOnclick() {
var data= {
UserName: $('#UserNameTextBox').val(),
Password: $('#PasswordTextBox').val(),
};
if (data.UserName== null) {
$("#showwarning1").html('<img src="~/Image/warning.png">');
}
if (data.Password== null) {
$("#showwarning2").html('<img src="~/Image/warning.png" />');
}
}
我的 HTML 代码:
<input type="text" id="UsernameTextBox" name="UsernameTextBox"/>
<input type="text" id="PasswordTextBox" name="PasswordTextBox"/>
<input type="button" onclick="LoginButonOnclick()" value="Enter"/>
<div id="showwarning1"></div>
<div id="showwarning2"></div>