From c69838d2c406ddb1bf7d0863f72d51dcd47f550a Mon Sep 17 00:00:00 2001 From: fifsky Date: Mon, 14 May 2018 14:36:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=BA=8B=E4=BB=B6=E5=BB=B6?= =?UTF-8?q?=E8=BF=9F=E7=BB=91=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 由于bootstrap的modal,在第二次打开的时候是一个全新的dom,所以此处一定要使用jquery延迟绑定,否则添加完一个项目之后,业务不刷新的情况下,保存按钮无效 --- views/book/index.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/book/index.tpl b/views/book/index.tpl index e9ab00b3..fcb6df06 100644 --- a/views/book/index.tpl +++ b/views/book/index.tpl @@ -375,7 +375,7 @@ /** * 创建项目 */ - $("#btnSaveDocument").on("click",function () { + $("body").on("click","#btnSaveDocument",function () { var $this = $(this); @@ -544,4 +544,4 @@ }); - \ No newline at end of file +