この単純な jquery .css ステートメントは 2 つの関数内でアクティブ化されません。何か問題がありますか?
JavaScript:
function updateAllCSS(element, property, value) {
function updateThemeCreatorCSS(element, property, value) {
$(element).css(property, value)
}
updateThemeCreatorCSS(element, property, value)
}
}
updateAllCSS('h1', 'backgroundColor', '#f00')
HTML:
<h1>Test header</h1>