我使用EJS模板來顯示文章列表,我想徘徊用戶圖片呼叫功能點徘徊
模板
<%for (var i=0; i< articles.length; i++){%>
<div class="ui-block list-article">
<article class="hentry post video">
<div class="post__author author vcard inline-items">
<div id="userProfilImage" class="userProfilImage">
<img src="<%= articles[i].user.image %>" alt="author" />
</div>
</div>
</article>
</div>
<% } %>
時的NodeJS調用節點功能與當前文章爲PARAM文件
app.locals.getUserPopupInfo = function(article){
article.user.name= "blablabla";
}
如何徘徊用戶圖像就像當調用app.locals.getUserPopupInfo功能:
<div id="userProfilImage" class="userProfilImage" onmouseenter="getUserPopupInfo(articles[i])">
<img src="<%= articles[i].user.image %>" alt="author" />
</div>
感謝
編輯:
我發現這一點:
<div id="userProfilImage" class="userProfilImage" onmouseenter="<%= getUserPopupInfo(articles[i]) %>">
<img src="<%= articles[i].user.image %>" alt="author" />
</div>
但它呼籲在頁面加載getUserPopupInfo功能。如何防止這一點?我想打電話給它只在鼠標上輸入
在頁面加載時調用Ejs注入。這是整個想法。 – Itamar