- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在我的网站中使用了三个 jQuery 函数。
在我的 function.js
文件中,我还使用 document.ready 来调用我的函数。
这是我的 jQuery 代码:
$(document).ready(function() {
bottom_cartouche();
pre_scroll_cartouche_top();
pre_scroll_cartouche_bottom();
});
function pre_scroll_cartouche_top() {
var cartouche_bottom_position = $(window).height() - $('.top_table').height() - $('.layout_bottom').height();
var cartouche_fixed_H = $('.cartouche_fixed').height();
var cartouche_top_position = -($('.cartouche_top').height() - $('.top_table').height());
/*----------------------------- TOP ---------------------------------------------------*/
$('.cartouche_top').on("mouseenter", function() {
$('.cartouche_top').stop().animate({
top: -$('.cartouche_top').height() + $('.cartouche_fixed').height()
});
$('.archives_open').on('click', function() {
$('.cartouche_top').stop().animate({
top: '0px'
}, function() {
$('.cartouche_fixed').addClass('active');
});
$('.archive_close').css('opacity', '1');
});
$('.archive_close').on('click', function() {
$('.archive_close').css('opacity', '0');
$('.cartouche_fixed').removeClass('active');
$('.cartouche_top').stop().animate({
top: cartouche_top_position
});
});
});
$('.cartouche_top').on("mouseleave", function() {
$('.cartouche_fixed').removeClass('active');
$('.cartouche_top').stop().animate({
top: cartouche_top_position
});
});
}
function pre_scroll_cartouche_bottom() {
var cartouche_bottom_position = $(window).height() - $('.top_table').height() - $('.layout_bottom').height();
var cartouche_fixed_H = $('.cartouche_fixed').height();
var cartouche_top_position = -($('.cartouche_top').height() - $('.top_table').height());
/*----------------------------- BOTTOM ---------------------------------------------------*/
$('.cartouche_bottom').on("mouseenter", function() {
$('.layout_bottom').slideUp();
$('.cartouche_bottom').stop().animate({
top: $(window).height() / 1.5
});
});
$('.cartouche_bottom').on("mouseleave", function() {
$('.layout_bottom').slideDown();
$('.cartouche_bottom').stop().css('position', 'fixed').animate({
top: cartouche_bottom_position
});
$('.cartouche_bottom_inside').removeClass('active');
$('.bottom_close').hide();
});
}
function bottom_cartouche() {
var cartouche_bottom_position = $(window).height() - $('.top_table').height() - $('.layout_bottom').height();
$('.cartouche_bottom_inside').on('click', function(e) {
e.preventDefault();
if (!$(this).is('.active')) {
$('.layout_bottom').slideUp();
$('.cartouche_bottom').css({
'position': 'absolute',
'cursor': 'text',
'left': '0'
}).animate({
top: $(".top_table").height();
});
$('.bottom_close').show();
$(this).addClass('active');
}
});
$('.bottom_close').click(function() {
$('.cartouche_bottom').css({
'position': 'fixed',
'cursor': 'context-menu'
}).animate({
top: cartouche_bottom_position
}, function() {
$('.cartouche_bottom_inside').removeClass('active');
});
$('.bottom_close').hide();
$('.layout_bottom').slideDown();
});
}
我正在尝试在我的第三个函数(函数 bottom_cartouche())中添加开/关操作。
我想,当“$('.cartouche_bottom_inside').on('click', function(e){
”禁用函数 pre_scroll_cartouche_top()
和 pre_scroll_cartouche_bottom()
当“$('.bottom_close').click(function(){
”再次启用这两个函数时。
我尝试使用开/关、绑定(bind)和解除绑定(bind),但我找不到使它工作的方法。
这是我试过的:
function bottom_cartouche(){
var cartouche_bottom_position = $(window).height() - $('.top_table').height() - $('.layout_bottom').height();
$('.cartouche_bottom_inside').on('click', function(e){
e.preventDefault();
if( !$(this).is('.active') ){
//禁用//
$('.cartouche_top').off('mouseenter',pre_scroll_cartouche_top());
$('.cartouche_bottom').off('mouseleave',pre_scroll_cartouche_bottom());
//结束禁用//
$('.layout_bottom').slideUp();
$('.cartouche_bottom').css({'position' : 'absolute', 'cursor' : 'text', 'left' : '0'}).animate({
top :$(".top_table").height();
});
$('.bottom_close').show();
$(this).addClass('active');
}
});
$('.bottom_close').click(function(){
//启用//
$('.cartouche_top').on('mouseenter',pre_scroll_cartouche_top());
$('.cartouche_bottom').on('mouseleave',pre_scroll_cartouche_bottom());
//结束启用//
$('.cartouche_bottom').css({'position' : 'fixed', 'cursor' : 'context-menu'}).animate({
top : cartouche_bottom_position
},function(){ $('.cartouche_bottom_inside').removeClass('active');
});
$('.bottom_close').hide();
$('.layout_bottom').slideDown();
});
}
尝试禁用时,只有第一个功能被禁用,再次启用时,它根本不起作用...
谁能帮我解决这个问题?
最佳答案
我找到了一个解决方案,该解决方案使用带有 if 语句和 2 个变量(flag_top 和 flag_bottom)的不同方法.这是我的代码,也许它可以帮助:
function pre_scroll_cartouche_top(){
var cartouche_bottom_position = $(window).height() - $('.top_table').height() - $('.layout_bottom').height();
var cartouche_fixed_H = $('.cartouche_fixed').height();
var cartouche_top_position = - ($('.cartouche_top').height()-$('.top_table').height());
var flag_top = 0;
/*----------------------------- TOP ---------------------------------------------------*/
$('.cartouche_top').on("mouseenter", function(){
if(flag_top==0){
$('.cartouche_top').stop().animate({top : -$('.cartouche_top').height()+$('.cartouche_fixed').height()});
$('.archives_open').on('click', function(){
flag_top = 1;
$('.cartouche_top').stop().animate({top : '0px'},function(){
$('.cartouche_fixed').addClass('active');
});
$('.archive_close').css('opacity','1');
});
$('.archive_close, .index_tableau a').on('click', function(){
flag_top = 0;
$('.archive_close').css('opacity','0');
$('.cartouche_fixed').removeClass('active');
$('.cartouche_top').stop().animate({top : cartouche_top_position});
});
}
});
$('.cartouche_top').on("mouseleave", function() {
if(flag_top==0){
$('.cartouche_fixed').removeClass('active');
$('.cartouche_top').stop().animate({top : cartouche_top_position});
}
});
}
function bottom_cartouche(){
/*----------------------------- PRE SCROLL BOTTOM ---------------------------------------------------*/
var cartouche_bottom_position = $(window).height() - $('.top_table').height() - $('.layout_bottom').height();
var cartouche_fixed_H = $('.cartouche_fixed').height();
var cartouche_top_position = - ($('.cartouche_top').height()-$('.top_table').height());
var flag_bottom = 0;
/*----------------------------- MOUSEENTER ---------------------------------------------------*/
$('.cartouche_bottom').on("mouseenter", function(){
if(flag_bottom==0) {
$('.layout_bottom').slideUp();
$('.cartouche_bottom').stop().animate({top :$(window).height()/1.5});
}
});
/*----------------------------- MOUSELEAVE ---------------------------------------------------*/
$('.cartouche_bottom').on("mouseleave", function(){
if(flag_bottom==0) {
$('.layout_bottom').slideDown();
$('.cartouche_bottom').stop().css('position','fixed').animate({
top :cartouche_bottom_position
});
$('.cartouche_bottom_inside').removeClass('active');
$('.bottom_close').hide();
}
});
/*----------------------------- OUVERTURE BOTTOM ---------------------------------------------------*/
$('.cartouche_bottom_inside').on('click', function(e){
e.preventDefault();
if( !$(this).is('.active') ){
flag_bottom=1;
$('.layout_bottom').slideUp();
//$('.slideshow').css('position','initial');
$('.cartouche_bottom').css({'position' : 'absolute', 'cursor' : 'text', 'left' : '0'}).animate({
top :$(".top_table").height(),
});
$('.bottom_close').show();
if ($('.cartouche_bottom_inside').height() < $(window).height() ) {
}
$(this).addClass('active');
}
});
/*----------------------------- FERMETURE BOTTOM ---------------------------------------------------*/
$('.bottom_close').click(function(){
flag_bottom=0;
$('.cartouche_bottom').css({'position' : 'fixed', 'cursor' : 'context-menu'}).animate({
top : cartouche_bottom_position
},function(){ $('.cartouche_bottom_inside').removeClass('active');
});
$('.bottom_close').hide();
//$('.slideshow').css('position','relative');
$('.layout_bottom').slideDown();
});
}
关于javascript - 禁用 jQuery 函数 onClick 然后启用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27493463/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!