我是一名使用 Titanium Mobile 框架学习移动开发的人。
我面临一个与应用 javascript 样式表相关的问题。当我将我的 jss 文件命名为与要应用该样式的 js 文件相同时,它工作正常。但是,如果我将其命名为其他名称,则它不起作用。谁能告诉我一个解决方案。以下是我的代码示例。
// app.js
var win = Titanium.UI.createWindow({ backgroundColor : '#fff' });
win.add( Ti.UI.createButton({ title : 'Button A' }) );
win.open();
// app.jss, works fine
button { backgroundImage: 'grdadient_img.png'; }
// button_style.jss, don't work
button { backgroundImage: 'grdadient_img.png'; }