我分页查出了数据
当我点击"修改"超链接时,第一行没反应
但是其他行是有反应的。
为什么点击第一行就没反应呢?
下面是页面代码:
<#list pageView.list as msg>
onMouseOut="this.style.backgroundColor='white'">
${msg_index+1}
style="cursor:pointer;color:blue;text-decoration: underline">
修改
删除
${msg.title}
${msg.messageContent}
${msg.sendTime?string("yyyy-MM-dd
HH:mm:ss")}
${msg.sender}
</#list>
这是js代码:
$("a[name='editmsg']").click(function(){
$(this).parent().parent().parent().parent().submit();
});