0
私は次のif文を採用コードの中に入れる必要がありますが、それが存在するなら有効ではありません。私は何か他の方法で同じことをすることができるいくつかの方法はありますか?Mootools 1.3どうすれば "注入"機能の中でif文を取得できますか?
var ele = new Element('li').adopt(
new Element('span.title', {text:row.title}),
new Element('span.subtitle').adopt(
// Need this to work, but its invalid where it is atm
if(row.subtitle = 1)
{
new Element('img', {src:'images/subTitle.png'})
}
),
new Element('span.bold', {text:row.bold}),
);
ele.iject(...
乾杯:Pがすべき'思考' – Nicekiwi