我正在尝试将“术语”传递给外部函数。
$('#item').terminal(function(command, term) {
我能够做到这一点的唯一方法是在函数中传递“术语”。
myfucntion(term, 'hello world');
有没有办法我可以做到这一点而不必每次都通过它?
编辑:
$(function () {
$('#cmd').terminal(function (command, term) {
switch (command) {
case 'start':
cmdtxt(term, 'hello world');
break;
default:
term.echo('');
}
}, {
height: 200,
prompt: '@MQ: '
});
});
function cmdtxt(term, t) {
term.echo(t);
}