js如何获取html的数据

js如何获取html的数据,第1张

一般用原生js、jQuery获取html元素的值。<div id="test">数值</div>

原生js写法:

alert(documentgetElementById('test')innerHTML);//数值

jQuery写法:

alert($('#test')html());//数值

JavaScript一种直译式脚本语言,是一种动态类型、弱类型、基于原型的语言,内置支持类型。它的解释器被称为JavaScript引擎,为浏览器的一部分,广泛用于客户端的脚本语言,最早是在HTML(标准通用标记语言下的一个应用)网页上使用,用来给HTML网页增加动态功能。

在1995年时,由Netscape公司的Brendan Eich,在网景导航者浏览器上首次设计实现而成。因为Netscape与Sun合作,Netscape管理层希望它外观看起来像Java,因此取名为JavaScript。但实际上它的语法风格与Self及Scheme较为接近。

为了取得技术优势,微软推出了JScript,CEnvi推出ScriptEase,与JavaScript同样可在浏览器上运行。为了统一规格,因为JavaScript兼容于ECMA标准,因此也称为ECMAScript。

检测简单的数据类型的方法

typeof方法用于检测简单的数据类型如typeof 12

instanceof的实例方法检测如[] instanceof Array // true

arrconstructor == Array判断arr的构造函数是否为数组,如果是则arr是数组

ArrayisArray([])判断是否是数组

精确判断数据类型ObjectprototypetoStringcall(arr)

最常见的判断方法:typeof

alert(typeof a) ------------> string

alert(typeof b) ------------> number

alert(typeof c) ------------> object

alert(typeof d) ------------> object

alert(typeof e) ------------> function

alert(typeof f) ------------> function

其中typeof返回的类型都是字符串形式,需注意,例如:

alert(typeof a == "string") -------------> true

alert(typeof a == String) ---------------> false

另外typeof 可以判断function的类型;在判断除Object类型的对象时比较方便。

判断已知对象类型的方法: instanceof

alert(c instanceof Array) ---------------> true

alert(d instanceof Date)

alert(f instanceof Function) ------------> true

alert(f instanceof function) ------------> false

注意:instanceof 后面一定要是对象类型,并且大小写不能错,该方法适合一些条件选择或分支。

根据对象的constructor判断: constructor

alert(cconstructor === Array) ----------> true

alert(dconstructor === Date) -----------> true

alert(econstructor === Function) -------> true

注意: constructor 在类继承时会出错

eg,

function A(){};

function B(){};

Aprototype = new B(); //A继承自B

var aObj = new A();

alert(aobjconstructor === B) -----------> true;

alert(aobjconstructor === A) -----------> false;

而instanceof方法不会出现该问题,对象直接继承和间接继承的都会报true:

alert(aobj instanceof B) ----------------> true;

alert(aobj instanceof B) ----------------> true;

言归正传,解决construtor的问题通常是让对象的constructor手动指向自己:

aobjconstructor = A; //将自己的类赋值给对象的constructor属性

alert(aobjconstructor === A) -----------> true;

alert(aobjconstructor === B) -----------> false; //基类不会报true了;

通用但很繁琐的方法: prototype

alert(ObjectprototypetoStringcall(a) === ‘[object String]’) -------> true;

alert(ObjectprototypetoStringcall(b) === ‘[object Number]’) -------> true;

alert(ObjectprototypetoStringcall(c) === ‘[object Array]’) -------> true;

alert(ObjectprototypetoStringcall(d) === ‘[object Date]’) -------> true;

alert(ObjectprototypetoStringcall(e) === ‘[object Function]’) -------> true;

alert(ObjectprototypetoStringcall(f) === ‘[object Function]’) -------> true;

以上就是关于js如何获取html的数据全部的内容,包括:js如何获取html的数据、js如何判断变量的数据类型、如何判断js中的数据类型等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10160094.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存