diff --git a/application/demo/view/inter.file.html b/application/demo/view/inter.file.html index 680192598..bb2d1c15f 100644 --- a/application/demo/view/inter.file.html +++ b/application/demo/view/inter.file.html @@ -2,21 +2,20 @@ {block name="content"} -
- + +
单图片上传
-
@@ -28,7 +27,6 @@ href="javascript:void(0)" class="uploadbutton">上传图片
- -
 
 
@@ -62,11 +59,56 @@ require(['jquery'], function () { }); });
+
+ +
+
+ 单文件上传 +
+
+
+ + + + +
+
+
+
+
+
+ +
+ 上传图片 +
+
+
+
+// 监听 input 的 onchange 事件
+// 当有图片上传时,会触发 change 事件
+require(['jquery'], function () {
+    $('[name="file_1"]').on('change', function () {
+        $(this).parent().css('backgroundImage', 'url(' + this.value + ')');
+        $(this).parent().attr('data-tips-image', this.value);
+    });
+});
+