XPages 如何在 xp:this.script 中单击时获取 link 的 ID?
XPages how to get the id of the link when clicked in xp:this.script?
如何在 xp:this.script 中点击 link 的 ID?
$(this).attr('id') 将 return 一个未定义的原因,这可能指的是脚本而不是 xp:link
Thomas 的回答帮助了我:
$(this).getParent().attr("id")
试试这个
$(this).getParent().attr("id")
如何在 xp:this.script 中点击 link 的 ID?
$(this).attr('id') 将 return 一个未定义的原因,这可能指的是脚本而不是 xp:link
Thomas 的回答帮助了我: $(this).getParent().attr("id")
试试这个
$(this).getParent().attr("id")