我在 theme.js 文件中有一个函数
$('.open_copy').click(function(){
var that = $(this);
var copy = that.prev();
that.parents('.asset').find('.cover').click();
copy.css('opacity', 0).show();
if (copy.children('.copy_content').data('jsp')) {
copy.children('.copy_content').data('jsp').destroy();
}
var height = copy.children('.copy_content').css({height: ''}).height();
if (height < that.parents('.asset').height() - 37) {
var top = (that.parents('.asset').height() - height)/2;
top = top < 37 ? 37 : top;
copy.children('.copy_content').css({'margin-top': top});
} else {
copy.children('.copy_content').css({'margin-top': '', height: that.parents('.asset').height() - 37}).jScrollPane();
}
if (!that.parents('.asset').find('.close_copy').length) {
that.prev().append('<a href="#" class="close_copy">Close</a>');
}
copy.animate({ 'opacity' : 1 }, 500);
that.fadeOut(500);
return false;
});
我需要将不透明度值更改为 0.9,但我无权访问 theme.js 文件。有什么方法可以通过在 html 页面中添加函数来更改/更改此函数?
copy.animate({ 'opacity' : 1 }, 500);