imgInp.onchange = evt => { const [file] = imgInp.files if (file) { blah.src = URL.createObjectURL(file) } } <form runat="server"> <input accept="image/*" ...
確定! 回上一頁