Js selects multiple pictures and displays them, just like the effect of sending multiple pictures on Wechat's moments. How can mui achieve this?

js selects multiple images and displays them, just like the effect of posting multiple pictures on Wechat"s moments. How can mui achieve this?
uses h5 + multiple selection code:

            function ima(){
                // 
    console.log(":");
    plus.gallery.pick( function(e){
        for(var i in e.files){
            console.log(e.files[i]);
              document.getElementById("headimg").src = e.files[i]; 
              
        }
    }, function ( e ) {
        console.log( "" );
    },{filter:"image",multiple:true,maximum:9,system:false,onmaxed:function(){
        plus.nativeUI.alert("9");
    }});// 9
            };
Jun.03,2021

add a new picture tag in for and enter it into the page:

      for(var i in e.files){
            
               imgDiv.innerHTML += '<img class="mui-imge" src="' + e.files[i] + '" alt=""/>'
               
            console.log(e.files[i]);
              
        }
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b382e4-2c0d4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b382e4-2c0d4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?