さまざまなテキストボックスが含まれるHTMLフォームを作成しました。私がやりたいのは、テキストが入っていないボックスの横に小さな画像を表示するjavascriptスクリプトを作成することです。これが私がやりたいことの例です:
現時点では、フォームを希望どおりに検証する次のスクリプトを作成しましたが、画像やテキストの表示方法がわからないため、ポップアップボックスしか表示されません。これが私が持っているコードです:
<script type="text/javascript">
function validateForm()
{
var x=document.forms["email_form"]["name"].value;
if (x==null || x=="")
{
alert("Please enter your name in the box provided.");
return false;
}
var x=document.forms["email_form"]["email"].value;
if (x==null || x=="")
{
alert("Please enter your e-mail address in the box provided.");
return false;
}
var x=document.forms["message-title"]["name"].value;
if (x==null || x=="")
{
alert("Please enter a message title in the box provided.");
return false;
}
var x=document.forms["email_form"]["message"].value;
if (x==null || x=="")
{
alert("Please enter your message in the box provided.");
return false;
}
}
</script>
誰かが私を正しい方向に向けることができますか?