我有一个div,已经有了一个"见证"我需要动态添加一个ID" testimonial"太
(function($) {
$(document).ready(function() {
console.log('running');
$(.testimonial).attr('id', 'testimonial');
});
})(jQuery);
但是我无法选择类testimonial
的元素,因为它现在允许我包含.
来通知它是一个类名。我收到以下错误:
Uncaught SyntaxError: Unexpected token .
如何做到这一点?
答案 0 :(得分:1)
尝试使用$('.testimonial').attr('id', 'testimonial');
代替$(.testimonial).attr('id', 'testimonial');
在此处阅读有关jquery选择器的更多信息http://www.w3schools.com/jquery/jquery_selectors.asp
答案 1 :(得分:0)
使用此$('.testimonial')
代替此$(.testimonial)