简体   繁体   English

JavaScript:onchange 函数导致错误/不起作用

[英]JavaScript : onchange function causes error/ didn't work

The Following code will add File upload and preview field.以下代码将添加文件上传和预览字段。


<b>This single img works but not in js</b> <br>
<img id="img" alt="your image" width="100" height="100" />
<input type="file" onchange="document.getElementById('img').src = window.URL.createObjectURL(this.files[0])">

<br/>
No of Img <input type="text" id="noi" name="noi" value="" onkeyup="addFields()">
    <br />
<script>
            function addFields(){
            // Number of inputs to create
            var number = document.getElementById("noi").value;
            // Container <div> where dynamic content will be placed
            var container = document.getElementById("container");
            var array = ["CRICTICAL","HIGH","LOW","INFO"];
            // Clear previous contents of the container
            while (container.hasChildNodes()) {
                container.removeChild(container.lastChild);
            }
            for (i=1;i<=number;i++){
                var img = document.createElement("img");
                img.width="100";
                img.height="100";
                img.id="img "+i;

                var upload = document.createElement("input");
                upload.type="file";
//This part is Not Working_______________
                upload.onchange="document.getElementById(img.id).src = window.URL.createObjectURL(this.files[0])";

//________________________________________
                container.appendChild(img);
                container.appendChild(upload);
                container.appendChild(document.createElement("br"));
            }
        }


        </script>
    <div id="container"/>

Problem :问题 :

Without the Container appendChild function the code works fine, you can see it in the first three lines of code.如果没有 Container appendChild 函数,代码运行良好,您可以在前三行代码中看到它。

You have to run a function inside upload.onchange .您必须在upload.onchange运行一个函数。 Something like this:像这样的东西:

upload.onchange= function () {
    document.getElementById(img.id).src = window.URL.createObjectURL(this.files[0])
}

Other way to do:其他做法:

upload.addEventListener('change', function () {
    document.getElementById(img.id).src = 
    window.URL.createObjectURL(this.files[0])
})

Problem Solved问题解决了

Working Fine.工作正常。

All image fields can able to preform upload and preview function of 'n' fields.所有图像字段都可以执行'n'个字段的上传和预览功能。

<b>This single img works but not in js</b> <br>
<img id="img" alt="your image" width="100" height="100" />
<input type="file" onchange="document.getElementById('img').src = window.URL.createObjectURL(this.files[0])">

<br/>
No of Img <input type="text" id="noi" name="noi" value="" onkeyup="addFields()">
    <br />
<script>
            function addFields(){
            // Number of inputs to create
            var number = document.getElementById("noi").value;
            // Container <div> where dynamic content will be placed
            var container = document.getElementById("container");
            var array = ["CRICTICAL","HIGH","LOW","INFO"];
            // Clear previous contents of the container
            while (container.hasChildNodes()) {
                container.removeChild(container.lastChild);
            }
            for (i=1;i<=number;i++){
                var img = document.createElement("img");
                img.width="100";
                img.height="100";
                img.id="img "+i;

                var upload = document.createElement("input");
                upload.type="file";
                upload.id="upload "+i;
//Working_______________
                upload.onchange=upload.onchange= function () {

                    var img_id=this.getAttribute('id');
                    var imgId = img_id.charAt(7) ; 
                     document.getElementById("img "+imgId).src = window.URL.createObjectURL(this.files[0])
                      }

//________________________________________
                container.appendChild(img);
                container.appendChild(upload);
                container.appendChild(document.createElement("br"));
            }
        }
</script>
    <div id="container"/>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM