この質問は答えられました。しかし、スタックオーバーフローでは、他の質問をすることはできません。誰でも助けることができますか?
質問する
176 次
1 に答える
3
s を宣言し、デフォルトで空の文字列に設定します。q1 が何もない場合、値を s に割り当てます。それ以外の場合、s は空の文字列のままです。コードの後半で、テキスト ボックスに s を入力するように設定できます。q1 が空の場合、s も入力されるため、そこには何も表示されません。
//declare s and set it to default to an empty string
var s = ''
//make sure q1 is defined and not null
if (q1 != undefined && q1 != null)
//if q1 is not empty, then set it equal to '_'+n1+'. '+q1,
//otherwise s will be an empty string
if (q1 != '')
s = '_'+n1+'. '+q1
//if s is empty you can do something,
//OR you can just set your input value to equal s
if (s == '')
//do some stuff here
于 2012-12-21T18:45:25.197 に答える