if
日付ピッカーで特定の日の条件を作成するにはどうすればよいですか?
たとえば、ユーザーが日付ピッカーに特定の日を挿入すると、メッセージが表示され、イベントが存在するかどうかが報告されます。
function myFunction() {
var x, text;
// Get the value of input field with id="test"
x = document.getElementById("test").value;
if (x == "07/21/2019") {
text = "Birthday event";
} else {
text = "No events";
}
document.getElementById("demo").innerHTML = text;
}
<p>make if conditional for a specific day in datepicker</p> <input id="test" type="date"> <button type="button" onclick="myFunction()">Submit</button>
<p id="demo"></p>