jQuery向父级元素最前面添加元素—prepend

$("#galleryImage").change(function () {
        imgpath = getObjectURL(this.files[0]);
        $("#galleryImage-container").prepend("
x
"); });

function getObjectURL(file) {
        var url = null;
        if (window.createObjectURL != undefined) {
            url = window.createObjectURL(file);
        }
        else if (window.URL != undefined) {
            url = window.URL.createObjectURL(file);
        }
        else if (window.webkitURL != undefined) {
            url = window.webkitURL.createObjectURL(file);
        }
        return url;
    }
实现的效果如下:
jQuery向父级元素最前面添加元素—prepend_第1张图片

你可能感兴趣的:(jQuery向父级元素最前面添加元素—prepend)