Get the string form of the html element

html:

            <ul id="box">
                <li><img src="image/i1.png" alt=""></li>
                <li><img src="image/i2.png" alt=""></li>
                <li><img src="image/i3.png" alt=""></li>
            </ul>

script:

    var mybox = document.getElementsByTagName("li");
    document.write(mybox[1].innerHTML);
    
    

output result:
image/i2.png this picture will be displayed on the web page, can I get this string?

<li><img src="image/i2.png" alt=""></li>
Mar.14,2021

javascript:

  

var mybox = document.getElementsByTagName ("li");
alert (mybox [1] .innerHTML);

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-1b3c421-2c302.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-1b3c421-2c302.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?