文档标签: qianduan
$(“[id^=percent]“).size()^=:表示以什么开头$=:表示以什么结尾~=:表示包含什么id:表示按id选择...
js汉字转拼音方法:var PinYin = {"a":"u554au963fu9515","ai":"u57c3u6328u54ceu5509u54c0u7691u764cu853cu77eeu827eu788du7231u9698u8bf6u6371u55f3u55ccu5ad2u7477u66a7u7839u953fu972d","an":"u978du6c28u5b89u4ffau6309u6697u5cb8u80fau6848u8c19u57efu63deu72b4u5eb5u6849u94f5u9e4cu9878u9eef","ang":"u80aeu6602u76ce","ao":"u51f9u6556u71acu7ff1u8884u50b2u5965u61cau6fb3u5773u62d7u55f7u5662u5...
解释一:
登陆
[拼音]Dēng lù
[解释]1.狭义是指到达某个地方(多指陆地);可以作为军事用语,表示由空中或水域成功着陆.
2.渡过海洋或江河登上陆地,特指作战的军队登上敌方的陆地。例:台风登陆。
3.比喻商品等打进某市场. 如:这种新型空调已经在上海市场登陆.
登录
英文单词:Login或Log in
登录的概念:
分时系统允许多个用户同时使用一台计算机,为了保证系统的安全和记帐方便,系统要求每个用户有单独的帐号作为登录标识,系统还为每个用户指定了一个口令。用户在使用该系统之前要输入标识和口令,这个过程被称为’登录’。
解释二:
当今,我们生活在互联网时代,网络成为人们查询和传递信息的高效路径和载体。“登lu网站”一词被频繁使用,其正确用法应该是“登陆”,而非“登录”。这从两个词的词意区别上就可以看出。
从词意上看,我们知道“登陆”一词为动词,其原意在商务印书馆出版...
js兼容获取浏览器的高度、js兼容获取浏览器的宽度//获取窗口宽度 var w = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;//获取窗口高度 var h = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;...
js获取时间戳
new Date().getTime()...
element.attachevent
是指针对什么对象绑定
window一般绑定 onload对象
document可以绑定很多 一般元素的事件都可以绑定
鼠标 键盘事件都可以 该方法只针对ie
w3c是用addEventListener 进行绑定的!js attachEvent,javascript中window.attachevent()和document.attachevent()这两种方法绑定区别...
$(".app a").bind({
mouseenter:function(){
$(this).children("img").animate({filter:'alpha(opacity=50)',opacity...
先判断jq是否被加载if (typeof window.jQuery == “undefined”) {//未引用Jquery} else {//引用了Jquery}再加载jqif (typeof window.jQuery == ‘undefined’) {var fileref = document.createElement(‘script’); //创建标签fileref.setAttribute(“type”, “text/javascript”); //定义属性type的值为text/javascriptfileref.setAttribute(“src”, “/js/jq.js”); &nbs...
js获取select标签选中的值var obj = document.getElementByIdx_x(”testSelect”); //定位idvar index = obj.selectedIndex; // 选中索引var text = obj.options[index].text; // 选中文本var value = obj.options[index].value; // 选中值 jQuery中获得选中select值第一种方式$(‘#testSelect option:selected’).text();//选中的文本$(‘#testSelect option:selected’) .val();//选中的值$(“#testSelect “).get(0).selectedIndex;//索引 第二种方式$(“#tesetSelect”).find(“option:selected”).text();//选中的文本…….val();…….get(0).selectedIndex;...
js弹框纯CSS打造,适合手机网页的提示/**
* Created by adophper.com on 13-12-27.
* tips(msg);
*/
//便捷方法
var _CalF = {
$ : function(id){return document.getElementById(id)},
create : function(id){return document.createElement(id)},
append : function(id){return document.body.appendChild(id)},
remove : function(id){return document.body.removeChild(id)}
}
//弹框
function tips(msg)...
键盘事件有3:keydown,keypress,keyup,分别是按下,按着没上抬,上抬键盘 。正确代码为:$(document).keyup(function(event){
if(event.keyCode ==13){
$("#submit").trigger("click");
}
});推荐:keyup,防止笔记本键盘不小心触摸到了1.有些文档中有写成这样:$(window).keydown(function(){
...
})XP系统IE6下是不成功的。2.还有INPUT的$("input").keydown(function(){
...
})这种情况要在input获取焦点时候,才能监听到键盘事件。//////////////////////////////////////////////////////////////////document.onke...
地址:http://mrthink.net/demo/ijs20110127.htm
window.onload = function(){
//底层共用
var iBase = {
Id: function(name){
return document.getElementById(name);
},
//设置元素透明度,透明度值按IE规则计,即0~100
SetOpacity: function(ev, v){
ev.filters ? ev.style.filter = 'alpha(opacity=' + v + ')' : ev.style.opacity = v / 100;
}
}
//淡入效果(含淡入到指定透明度)
function fadeIn(elem, speed, opacity){
...
css把背景图片拉伸至100%,背景100%
<style type="text/css">
div{
width:100%;
height: 500px;
background-image:url('2.png');
background-size:cover;
filter : progid:DXImageTransform.Microsoft.AlphaImageLoader ( sizingMethod='scale' , src='2.png')
}
</style>
<body>
<div></div>
</body>
使用滤镜,其中 sizingMethod="scale" 就是拉伸。
...
155 条记录 1/
12 页
下一页 12345 下5页 最后一页