简体   繁体   中英

How to create a custom function which i can turn it off on a click?

I am running a bit of code once the page load so in the footer i have got:

$(function(){
  //code to run on page load
});

But then i need to stop that code to run on a

.click() 

I was thinking of having a custom function which runs on page load and then be able to disabale that function on a click.

How to create a custom function which i can turn it off on a click?

A simple way would be to add a flag/preference variable to your page, which dictates which logic can be executed and when.

Whenever code is then executed, just check the preference, ie

function myfunction () {
    ....
    if (code_may_run) {
        ....
        code_may_run = false;
    }
    ....
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM