标签: javascript jquery html
我正在处理一个CMS,它将自己的id分配给UL类,例如
id="nav_1218396"
我想用
id="topnav"
想法?
答案 0 :(得分:6)
我认为这很简单:
$('#nav_1218396').attr('id', 'topnav');
答案 1 :(得分:2)
如果你知道id:
document.getElementById('nav_1218396').id = 'topnav';
但为什么你不能使用已有的ID?