getElementByIdx_x js自定义getElementById函数
更新时间:2012年01月24日 16:30:45 作者:
最近看JS代码,发现不少人问getElementByIdx_x是什么函数,其实就是个getElementById自定义函数
函数代码:
document.getElementByIdx_x=function(id){
if(typeof id =='string')
return document.getElementById(id);
else
throw new error('please pass a string as a id!')
}
实例代码:
<div id='box'>9</div>
<script>
document.getElementByIdx_x=function(id){
if(typeof id =='string')
return document.getElementById(id);
else
throw new error('please pass a string as a id!')
}
var timer = window.setInterval(function(){
document.getElementByIdx_x('box').innerHTML = parseInt(document.getElementByIdx_x('box').innerHTML) - 1;
if(parseInt(document.getElementByIdx_x('box').innerHTML) < 0)
{
window.clearInterval(timer);
window.location = 'https://www.jb51.net';
}
}, 1000);
</script>
复制代码 代码如下:
document.getElementByIdx_x=function(id){
if(typeof id =='string')
return document.getElementById(id);
else
throw new error('please pass a string as a id!')
}
实例代码:
复制代码 代码如下:
<div id='box'>9</div>
<script>
document.getElementByIdx_x=function(id){
if(typeof id =='string')
return document.getElementById(id);
else
throw new error('please pass a string as a id!')
}
var timer = window.setInterval(function(){
document.getElementByIdx_x('box').innerHTML = parseInt(document.getElementByIdx_x('box').innerHTML) - 1;
if(parseInt(document.getElementByIdx_x('box').innerHTML) < 0)
{
window.clearInterval(timer);
window.location = 'https://www.jb51.net';
}
}, 1000);
</script>
您可能感兴趣的文章:
- js中document.getElementById(id)的具体用法
- javascript typeof id===''string''?document.getElementById(id):id解释
- 原生js操作checkbox用document.getElementById实现
- js querySelector和getElementById通过id获取元素的区别
- js中document.getElementByid、document.all和document.layers区分介绍
- JavaScript中也使用$美元符号来代替document.getElementById
- javascript代码在ie8里报错 document.getElementById(...) 为空或不是对象的解决方法
- javascript getElementById 使用方法及用法
- js中的getElementById的使用方法
相关文章
JS Angular 服务器端渲染应用设置渲染超时时间
这篇文章主要介绍了JS Angular服务器端渲染应用设置渲染超时时间,通过setTimeout模拟一个需要5秒钟才能完成调用的API展开详情,需要的小伙伴可以参考一下2022-06-06javascript prototype的深度探索不是原型继承那么简单
JavaScript中对象的prototype属性,可以返回对象类型原型的引用。这是一个相当拗口的解释,要理解它,先要正确理解对象类型(Type)以及原型(prototype)的概念。2008-06-06
最新评论