質問

Is it possible to do something like this

$( "#till__tablepanel_table_"+tablenumber ).append( "<span>"+if (variable == 1) { writeHere }+"</span>" );

I cannot seem to get this working. Example: How would i writeHere if the conditions were true?

役に立ちましたか?

解決

You can use a ternary if statement for that:

.append( "<span>" + (variable == 1 ? writeHere : "" ) + "</span>" );
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top