<form id="myForm" method="post" action="/home"> // change the 'action' attribute to the link you want to post the form
<input type="text" id="inputArea" onfocus="myFunc()">
<span id="error" class="hide">Please enter a value</span>
<button type="submit" id="myButton">Submit</button>
</form>
<script>
function myFunc(){
var input = document.getElementById('inputArea');
var button = document.getElementById('myButton');
var span = document.getElementById('error');
if(input.value == ''){
span.className = errorMessage;
} else if(input.value != ''){
span.className = hide;
}
}
</script>
css:
.hide {display:none;}
.errorMessage {color:red;}
你甚至可以通過使用正則表達式更具體的輸入,但這是一個不同的故事!
你可以先寫一些javascript。這不是免費的編程服務。要麼開始寫一些JavaScript,並嘗試某種形式或只是聘請開發人員。 – NewToJS