Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Firepad 文档说高度是通过 css 规则设置的:
.firepad { height: 500px; }
但是可以在javascript中设置它吗?我想根据浏览器窗口的高度设置高度。
你可以试试:
使用 jQuery:
$('.firepad').css('height', '500px');
没有 jQuery:
document.querySelector('.firepad').style.height = '500px';
如果要调整编辑器和用户列表的大小,只需替换.firepad为#firepad-container.
.firepad
#firepad-container
只需相对于浏览器窗口的高度进行计算并使用这两种方法之一。