我在我的演示项目 strut2-tiles-plugin 中使用,我的瓷砖看起来像
<definition name="profileListPanel" extends="basePanel">
<put-attribute name="title" value="menu.adm.pro.title"></put-attribute>
<put-list-attribute name="body-items">
<add-attribute value="/jsp/admin/profile/profileList.jsp"/>
</put-list-attribute>
</definition>
<definition name="profileList" extends="baseLayout">
<put-attribute name="title" value="menu.adm.pro.title" />
<put-list-attribute name="body-items">
<add-attribute value="profileListPanel" type="definition"></add-attribute>
</put-list-attribute>
</definition>
在basePanel中我正在迭代
<tiles:importAttribute name="body-items" toName="bodyItems"/>
<s:iterator var="item" value="%{#attr.bodyItems}">
<tiles:insertAttribute value="${item}" flush="false"></tiles:insertAttribute>
</s:iterator>
在 profileList.js 我有
var editPopUp;
$(document).ready(function(){
editPopUp=new PopUp();
$('.edit-profile').click(function(e) {
e.preventDefault();
var url=$(this).attr('href');
editPopUp.openPopUp(url);
});
});
问题是:profileList.js 被多次加载并$('.edit-profile')
附加了多个事件
一些想法?