作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以将两个不同的 Yammer 共享按钮添加到同一页面?
使用 Yammer 中的文档我能够向同一页面添加两个按钮,但它们仍然指向相同的 url( http://example.com/button2 具有以下配置)。
yam.platform.yammerShare({
customButton: true,
classSelector: 'button1',
pageUrl: 'http://example.com/button1'
});
yam.platform.yammerShare({
customButton: true,
classSelector: 'button2',
pageUrl: 'http://example.com/button2'
});
我还设置了一个完整的 Plunker here .
最佳答案
事实证明,事件处理程序本身有一个 API,因此我可以自己进行绑定(bind)并获得所需的灵 active :
document.getElementsByClassName('button1')[0].addEventListener('click', function() {
yam.platform.yammerShareOpenPopup({
defaultMessage: 'Check out'
pageUrl: 'http://example.com/button1
});
});
document.getElementsByClassName('button2')[0].addEventListener('click', function() {
yam.platform.yammerShareOpenPopup({
defaultMessage: 'Check out',
pageUrl: 'http://example.com/button2'
});
});
当需要更改 url 时,这也更简单,例如由于客户端路由。查看完整的 Plunker here .
关于javascript - 同一页面上的两个不同的 Yammer 共享按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36772725/
我是一名优秀的程序员,十分优秀!