随笔分类 - javascript/jquery
js
摘要:typeof(var)是用来判断变量是否为数组的。JS中经常需要操作HTML控件,大家知道,HTML空间如果名字都取相同的话,那么使用document.getElementsByName就可以取得一个数组。如果想使用if(document.aaa.length!="undefined")来判断名字为"aaa"的控件在页面中是否存在多个(也就是数组)的话,这个用法就会报错。这时就要使用if(typeof(document.aaa.length) !== 'undefined')。===============================
阅读全文
摘要:Cross-domain-data-calls-using-JQuery-getJSON$(document).ready(function(e) { $.getJSON("http://dev.mjxy.cn/json.aspx?n=5&jsoncallback=?",function(result){ $(".devlist").empty(); $.each(result, function(i,field){ var html=""; html="<li><a href=\"&qu
阅读全文
摘要:在JavaScript中存在这样两种原始类型:Null与Undefined。这两种类型常常会使JavaScript的开发人员产生疑惑,在什么时候是Null,什么时候又是Undefined?
阅读全文
摘要://获取域名
host = window.location.host;
host2=document.domain;
阅读全文