如何将字符串添加到 .attr('', '') 值

发布于 2024-12-12 04:39:06 字数 200 浏览 0 评论 0原文

我想用这个标志添加一个值 _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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

厌味 2024-12-19 04:39:06

听起来您想将 _gaq.push(...) 的值设置为特定属性的值。如果是这样,那么只需执行以下操作

.attr('theName', _gaq.push(['_trackEvent', '', '', '']) + '');

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

.attr('theName', _gaq.push(['_trackEvent', '', '', '']) + '');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文