From 1803fdae47d6f1eb3423093470d5b8ab899c4a53 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 11 Jul 2017 10:34:09 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E6=8F=92?= =?UTF-8?q?=E4=BB=B6=E6=A1=88=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/demo/view/inter.file.html | 72 +++++++++++++++++++++------ application/route.php | 2 +- 2 files changed, 58 insertions(+), 16 deletions(-) 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);
+    });
+});
+