Home  >  Article  >  Web Front-end  >  js bubble method and array to string sample code_javascript skills

js bubble method and array to string sample code_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:25:421459browse

js code:

Copy code The code is as follows:

window.onload = function(){
var mian = document.getElementById( "mian" );
var mian1 = document.getElementById( "mian1" );
var str = mian.innerHTML;
var arry = [];
var len = str.length;
for( var i = 0; i < len; i ){
arry[ i ] = str[ i ];
};
function paix1( arry ){
var temp;
while( len > 0 ){
for( var j = 0; j < len - 1; j ){
if( arry[ j ] > ; arry[ j 1 ] ){
temp = arry[ j ];
arry[ j ] = arry[ j 1 ];
arry[ j 1 ] = temp;
};
};
len--;
};
return arry;
};
mian1.innerHTML = paix1(arry).join(""); // Convert the array into String
};

html code:
Copy code The code is as follows:

vdwsxdfrthspas


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn