在这里,我希望仅当我在输入字段中输入内容时才触发该函数。如果它是空的,我想提醒它不能为空。我尝试了 if else 条件,但没有帮助。我什至尝试使用 typeof 但无论什么类型都是字符串。
const input = document.querySelector("#input");
function myFunc(){
let name = input.value;
if(name==null){
alert("PLEASE ENTER YOUR NAME")
} else{
alert('Hello'+' '+name);
}
};
<body>
<input placeholder="Enter your name" id="input">
<button id="btn" onclick="myFunc()">Click me!</button>
</body>
缥缈止盈
慕森王
慕田峪9158850
相关分类