我们怎样才能使 jquery 终端屏幕可调?
How can we make jquery terminal screen adjustable?
我在我的项目中使用 jquery 终端来 运行 命令,因为我想让它的屏幕可调,我做不到,有人能帮我吗?
您可以创建 jQuery Terminal inside jQuery UI dialog 或者使用 jQuery UI
的可调整大小
<div class="wrapper">
<div class="term"></div>
</div>
$('.wrapper').resizable();
$('.term').terminal();
.wrapper {
width: 400px;
height: 200px;
}
.term {
height: 100%;
}
我在我的项目中使用 jquery 终端来 运行 命令,因为我想让它的屏幕可调,我做不到,有人能帮我吗?
您可以创建 jQuery Terminal inside jQuery UI dialog 或者使用 jQuery UI
的可调整大小<div class="wrapper">
<div class="term"></div>
</div>
$('.wrapper').resizable();
$('.term').terminal();
.wrapper {
width: 400px;
height: 200px;
}
.term {
height: 100%;
}