0

我需要为我在 Sencha Touch 中完成的移动应用程序交换 css。

目前我=我没有得到任何结果。你能告诉我怎么做吗?

谢谢

4

1 回答 1

0

我用这段代码解决了这个问题......

var accessibilityButton = {
                xtype: 'button',
                ui: 'custom-btn-confirm',
                maxWidth: '360px',
                centered: true,
                flex: 1,
                scope: this,
                style: 'color: #ffffff',
                text: 'Active Accesibility',
                ui: 'custom-btn-confirm',         

                handler: function changeStyle() {
                    // Swap the CSS for Accessibility
                    var i, a, url, btn;
                    for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
                        if(a.getAttribute("rel").indexOf("style") != -1) {
                            url = a.href;
                            btn = document.getElementById("ext-element-114");

                            if(url.lastIndexOf('app.css') !== -1) {
                                a.href = 'resources/css/app-accesibility.css';
                                btn.textContent = "AAAA";
                            }
                            else {
                                a.href = 'resources/css/app.css';
                                btn.textContent = "BBBB";
                            }
                        } 

                    }

                }

            };
于 2012-10-01T09:47:33.517 回答