data-theme
JavaScriptからすべてのdiv、listviews、forms、li、ulなどに値を追加するにはどうすればよいですか?
出来ますか?はいの場合、どうすればそれを行うことができますか?
次のようなものは機能しますか?
$.mobile.page.prototype.options.contentTheme= "e";
data-theme
JavaScriptからすべてのdiv、listviews、forms、li、ulなどに値を追加するにはどうすればよいですか?
出来ますか?はいの場合、どうすればそれを行うことができますか?
次のようなものは機能しますか?
$.mobile.page.prototype.options.contentTheme= "e";
Array.prototype.forEach.call(document.getElementsByTagName("*"), function (el) {
el.setAttribute("data-theme", "e");
});
jquery-mobile が含まれている場合は、次のように動作します。
$.mobile.page.prototype.options.contentTheme= "e";
$.mobile.page.prototype.options.headerTheme= "e";
$.mobile.page.prototype.options.footerTheme= "e";
ただし、ヘッダー、コンテンツ、またはフッターの一部ではない要素を追加した場合は、すべての要素に適用する Domenic の方法に従う必要があります。