直播中如何获取房间号?
姬捷
假如五指一样长,怎能满足用户不同需求?
- 使用
window.location.search
获取查询参数中的roomid
。 - 使用
document.getElementById
获取房间元素。 - 使用
element.getAttribute
获取房间元素的data-roomid
属性值。 - 使用
document.querySelector
获取房间元素。 - 使用
document.getElementsByClassName
获取所有房间元素。 - 使用
Array.prototype.forEach
遍历所有房间元素,并使用element.getAttribute
获取房间元素的data-roomid
属性值。