您可以执行以下操作:
// ----------------------------------------------------------
// Primary Typograpy
// ----------------------------------------------------------
var current;
/* Primary Typography - Size */
wp.customize(\'typography_primary_size\', function( value ) {
current.size = value;
value.bind(function(size) {
$(\'h1, h2, h2, h4, h5, h6\').css(\'font-size\', size);
});
});
/* Primary Typography - Face */
wp.customize(\'typography_primary_face\', function( value ) {
current.face = value;
value.bind(function(face) {
if(current.size.get() == \'whatever\'){
current.size.set(\'othervalue\');
} else {
}
});
});
抱歉,奥托,这可能有点粗糙,但它是有效的。另外,您还可以使用
set
方法:
current.size.set(\'othervalue\')
将触发h1到h6标题的自定义css更改。