我知道我们可以使用 (javascript)
I understand that we can use (javascript)
if (typeof textbox === "object") { }
但是有没有方法可以让我确保对象是一个文本框?
but are there methods which will allow me to ensure that the object is a textbox?
var isInputText = obj instanceof HTMLInputElement && obj.type == 'text';
这篇关于检查对象是否是文本框 - javascript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!