/**
* js排序算法 --- 冒泡排序
*
*/
function bubbleSort(arr) {
let i,j;
for(i=0;i<arr.length;i++){
for(j=0; j<=arr.length-i;j++){
if(arr[j]>arr[j+1]){ // ">"从小到大排序
......................
阅读全部
|
mnmnddc
贴于 2019年8月22日 00:42
hide
bbsi
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>js特效大全:www.sucaihuo.com</title>
<script type="text/javascript">
var vcity={ 11:"北京",12:"天津",13:"河北",14:"山西",15:"内蒙古",
21:"辽宁",22:"吉林",23:"黑龙江",31:"上海",32:"江苏",
33:"浙江",34:"安徽",35:"福建",36:"江西",37:"山东",41:"河南",
42:"湖北",43:"湖南",44:"广东",45:"广西",46:"海南",50:"重庆",
51:"四川",52:"贵州",53:"云南",54:"西藏",61:"陕西",62:"甘肃",
63:"青海",64:"宁夏",65:"新疆",71:"台湾",81:"香港",82:"澳门",91:"国外"
......................
阅读全部
|
gedage
贴于 2018年12月17日 18:37
hide
bbsi
// define array position of text
var textString = 'happylunarnewyear2017';
var textMatrix = [
4.5, 0, 5.5, 0, 6.5, 0, 7.5, 0, 8.5, 0,
0, 1, 1, 1, 2, 1, 3, 1, 4, 1, 6, 1, 7, 1, 8, 1, 10, 1, 11, 1, 12, 1, 13, 1,
5, 2, 6, 2, 7, 2, 8, 2
]
var chars = {
h: [
0, 0, 0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7,
1, 3, 2, 3, 3, 3, 4, 3,
......................
阅读全部
|
ddc777
贴于 2018年5月18日 11:00
hide
bbsi
<script type="application/ld+json">
"@context": {
"name" : "temperature",
"@type": "number",
"minimum": 0,
"maximum": 80,
"description" : "a physical quantity that expresses the subjective perceptions of hot and cold",
"url" : "https://en.wikipedia.org/wiki/Temperature",
"unit": "Celsius",
"number": 24
}
</script>
阅读全部
|
jiki0011
贴于 2017年11月18日 19:56
hide
bbsi
前端常见算法的JS实现
排序算法
1、冒泡排序
function bubbleSort(arr){
var i = j = 0;
for(i=1; i<arr.length; i++){
for(j=0; j<=arr.length-i; j++){
var temp = 0;
// ">" 从小到大排序
// "<" 从大到小排序
if(arr[j] > arr[j+1]){
temp = arr[j]
......................
阅读全部
|
天逸1
贴于 2017年3月16日 17:05
hide
bbsi
求大神帮忙看一下,怎么改,现在还是没有将抽中数字删除,急!!!!
var index=1, //当前亮区位置
prevIndex=0, //前一位置
Speed=300, //初始速度
Time, //定义对象
arr = [], //初始化数组
zjarr = [],
EndIndex=0, //决定在哪一格变慢
ptb, //获取tb对象
cycle=0, //转动圈数
EndCycle=0, //计算圈数
......................
阅读全部
|
A12333
贴于 2017年1月15日 23:29
hide
bbsi
* Created by hery on 2016/7/25.
*/
function initPrintActiveX(){
var div_ = document.createElement('div');
div_.style="display:none";
var object_=document.createElement('object');
object_.setAttribute("classid","clsid:AF33188F-6656-4549-99A6-E394F0CE4EA4");
object_.setAttribute("codebase","http://www.4Fang.net/4ff/sc_setup.exe");
object_.setAttribute("id","pazu");
object_.setAttribute("name","pazu");
var param_=document.createElement('param');
param_.setAttribute("name","License");
......................
阅读全部
|
sanrain
贴于 2017年1月3日 17:56
hide
bbsi