WEB前台

[size=large][b]1.动态加载JS CSS文件[/b][/size]

document.getElementsByTagName("head")[0].appendChild(fileref)


[size=large][b]2.浏览器版本检测[/b][/size]
这个估计不会太准确 传说可以伪装浏览器信息
function browser_figure(){
var browser = navigator.appName;
var b_version = navigator.appVersion;
browser_v = b_version.match('MSIE 6.0');
if (browser_v == 'MSIE 6.0') {
alert('您的浏览器版本过低,请升级至IE 7.0+ ,Firefox 3.0+, Safari 4 + , Opera 9 +');
$('name').disable();
$('password').disable();
}
}


[size=large][b]3.解决Jquery和prototype冲突[/b][/size]

jQuery(function($) {
// 你可以在这里继续使用$作为别名...
});

这个就是document ready那方法的简写 这个里面使用$作为jquery的选择器符号不会和prototype冲突~ 注意的是body onload事件如果被绑定会导致这个失效

[size=large][b]4.Jquery多个元素绑定同一有参函数[/b][/size]

$('#id-1').bind('click',demo)
$('#id-2').bind('click',demo)
function demo(){
***
}

给id-1和id-2赋予自定义的HTML属性用来放置参数就可以这样绑定事件

[size=large][b]4.让IE6表现出position:fixed的效果[/b][/size]

.tree-container{
position: absolute;
bottom: auto;
clear: both;
top:expression(eval(document.compatMode &&
document.compatMode=='CSS1Compat') ?
documentElement.scrollTop
+(documentElement.clientHeight-this.clientHeight) - 1
: document.body.scrollTop
+(document.body.clientHeight-this.clientHeight) - 1);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值