如何将字符串添加到 .attr('', '') 值
我想用这个标志添加一个值 _gaq.push(['_trackEvent', '', '', '']);
.attr('', '
_gaq.push(['_trackEvent', '', '', '']);')
如何将其打印到属性的变量中?
感谢您的帮助:)
I would like to add a value with this signs_gaq.push(['_trackEvent', '', '', '']);
.attr('', '
_gaq.push(['_trackEvent', '', '', '']);')
how do I print that into the variable into the attribute?
Thanks for help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想将 _gaq.push(...) 的值设置为特定属性的值。如果是这样,那么只需执行以下操作
It sounds like you want to make the value of
_gaq.push(...)
the value of a specific attribute. If so then just do the following