var input = document.getElementById("文本框id");
if (input.value == null || input.value.length == 0) {
alert('文本框空的')
} else {
alert('文本框有内容');
}