Home > Web Front-end > JS Tutorial > body text

js bubble method and array to string sample code_javascript skills

WBOY
Release: 2016-05-16 17:25:42
Original
1467 people have browsed it

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


source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!