2

質問があります。Jquery ターミナルで値を追加するにはどうすればよいですか? このようなもの:

jQuery(function($, undefined) {
 $('#terminal').terminal(function(command) {
     if(command == 'test ' + value) { // Value (something a user wrote)
        alert(value);
     }else{
     alert("You don't wrote anything."); 
     }

 }, {
 greetings: 'Hello.',
 name: 'Name',
 prompt: 'Terminal> ',
 color: 'some color'
 });
});

私は次のようなことを意味します:

if(command == 'you type ' + userText) { 
alert(userText); 
} else { 
alert("You don't wrote anything."); 
}
4

1 に答える 1