if (typeof textBox === "object") { }
但是有什么方法可以让我确保对象是一个文本框?
var isInputText = obj instanceof HTMLInputElement && obj.type == 'text';