我有 4 个使用 Jquery UI 的“按钮”功能的按钮。3 工作无懈可击。第 4 个似乎不想在悬停时始终应用 jquery ui 悬停类“ui-state-hover”。它有时会这样做,但大多数时候它只应用一个“悬停”类(我在萤火虫中观看它),这显然与他们的 css 样式不匹配。有谁知道到底是什么导致了这种差异?
编辑:我认为这是 UI 按钮和 Ajax Uploader 之间的冲突。这是我正在使用的一些精简代码。
$('.upload_img').button({
icons: {
primary: 'ui-icon-folder-open'
},
label: "Browse"
})
jQuery('.upload_img').each(function(){
var button = jQuery(this);
var ID = jQuery(this).attr('value');
var container = jQuery(this).parent();
//prevent the clicks from its default 'form submit' behavior
$(this).click(function() {
return false;
});
new AjaxUpload( button, {
action: ajaxurl,
name: ID , // File upload name
data: { // Additional data to send
action: 'save_function',
type: 'upload',
_nonce: '<?php echo $nonce; ?>',
key: ID },
onSubmit: function(file , ext){
this.disable(); // If you want to allow uploading only 1 file at time, you can disable upload button
},
onComplete: function(file, response) {
this.enable(); // re-enable upload button
if(response == 99){
//alert(response);
show_message(5); // failure
t = setTimeout('fade_message()', 2000);
}
// If there was not an error
else{
show_message(4); // success
t = setTimeout('fade_message()', 2000);
}
}
});
});