addBuy.js 283 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 /** * Created by moli on 15/8/18. */ define(function( require, exports, module ) { require('region'); region.start(true); $(".file-delete").on({ click: function(){ var img = $(this).parent().find("img"); img.attr("src", ""); } }) });