摘要:
<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, 阅读全文
摘要:
<!DOCTYPE html> <head> <meta charset="utf-8" /> <title></title> <style> * { padding: 0; margin: 0; } .box { position: absolute; width: 100px; height: 阅读全文
摘要:
<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <title>图片上传</title></head> <body> <img id="img" class="accounts-name" src="images/lihuaz 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>百度首页联想词</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, maxim 阅读全文
摘要:
<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style> * { margin: 0; padding: 0; list-style: none; } .box { width: 640 阅读全文
摘要:
<!DOCTYPE html> <head> <meta charset="utf-8" /> <title></title> <style> #box { position: absolute; width: 50px; height: 50px; background-color: #FF6E3 阅读全文
摘要:
<script> function bubbleSort(array) { var i, j, temp, len = array.length; for (i = 0; i < len; i++) { for (j = 0; j < len; j++) { if (array[i] < array 阅读全文
摘要:
<meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> <meta name="apple- 阅读全文
摘要:
<script> var cb = $.Callbacks(); //Callbacks(option) 有4个参数,可以多个参数写一起,空格分隔开 //once 多个fire() 只触发一次 //memory fire()后面的add也触发 //unique 不触发重复的函数 //stopOnFa 阅读全文