我想在单击按钮时呈现某些操作。
条件是:(如果输入字段中存在值,则写入“值存在”。如果值不存在,则发出警报)。
我尝试用 null 替换 undefined 。我还尝试替换运算符 === 和 ==。没有一个有效!请帮忙。
<html>
<head>
</head>
<body>
<input id='typer' type='text'></input>
<button onclick='hey()'>click</button>
<p id='pw'></p>
<script>
var pw
pw = document.querySelector('#pw');
function hey() {
if (document.getElementById('typer').value !== undefined) {
pw.innerHTML = 'value exists';
} else {
alert('value does not exists');
}
}
</script>
</body>
</html>
jeck猫
茅侃侃
相关分类