現在,我正在使用Wordpress中的顏色選擇器和窗口小部件。選擇顏色並提交之後。我的顏色選擇器更改爲文本框。我怎麼解決這個問題?拾色器和窗口小部件
我的代碼如下。
在形式上功能:
$instance = wp_parse_args((array) $instance, array('background_color' => '#e3e3e3'));
$background_color = isset($instance['background_color']) ? esc_attr($instance['background_color']) : '';
<label for="<?php echo $this->get_field_id('background_color'); ?>" style="display:block;"><?php _e('Title Background Color:'); ?></label>
<input class="widefat color" id="<?php echo $this->get_field_id('background_color'); ?>" name="<?php echo $this->get_field_name('background_color'); ?>" type="text" value="<?php echo esc_attr($background_color); ?>" />
<div class="colorpicker"></div>
我的js文件。
jQuery(document).ready(function(){
"use strict";
//This if statement checks if the color picker widget exists within jQuery UI
//If it does exist then we initialize the WordPress color picker on our text input field
if(typeof jQuery.wp === 'object' && typeof jQuery.wp.wpColorPicker === 'function'){
jQuery('.color').wpColorPicker();
}
else {
//We use farbtastic if the WordPress color picker widget doesn't exist
jQuery('.colorpicker').farbtastic('.color');
}
});
在功能更新
$instance['background_color'] = $new_instance['background_color'];