摘要:
动态显示百分圆 阅读全文
摘要:
1、css3动画是怎样实现的? 利用animation属性制作动画,通过不同的keyframe实现效果。 2、p:nth-of-type(2) 和 p:nth-child(2) 选择器的区别? p:nth-of-type(2) :选择父标签下的第二个段落子元素; p:nth-child(2) :首先 阅读全文
摘要:
js代码 第二种方式: 阅读全文
摘要:
window.onload = function () { var u = navigator.userAgent; if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) {//安卓手机 alert("安卓手机"); // window.location.href = "mobile/index.htm... 阅读全文
摘要:
$("#fileupload").on("change",function(){ var filePath=$(this).val(); if(filePath){ $(".fileerrorTip").html("").hide(); var arr=filePath.split('\\'); ... 阅读全文