How to solve the problem that the function cannot be debugged on the subpage of javascript?

Source: Internet
Author: User

Recently, when I am working on a project, I will encounter a situation where I cannot debug javascript code when submitting it on the subpage. Sometimes this problem occurs, we cannot normally work in the browser, we can only use the original alert or console. log (), of course, this is also a solution, but sometimes we want to see how the program runs, but also what the value of each parameter is, therefore, it is of great significance.

After I paste a picture, you will probably know when this problem will occur.
Copy codeThe Code is as follows:
<Script>
Function stopWatchDog (watchDogId ){
Alert ("aa ");
Var url = '<s: url value = "/watchDog/stopWatchDog"/> ';
Var params = {
WatchDogId: watchDogId,
};
$. Post (url, params, function (data ){
If (data. success ){
CloseDialog ();
TbGrid. send ();
} Else {
If (data. errorMsg! = Null & data. errorMsg! = ""){
JAlert (data. errorMsg, "system message ");
} Else {
JAlert ("Stop exception", "system message ");
}
$ ("# SaveBtn"). removeAttr ("disabled ");
$ ("# SaveBtn" ).css ("color", "white ");
}
}, "Json ");
}
</Script>

This is actually a function declaration. If you understand the javascript context, you will know that the function declaration is only the name of the function loaded when the page context is loaded. The function content cannot be loaded normally.

If we change to function self-execution or define this function declaration in function autonomy, then this problem can be solved.
Copy codeThe Code is as follows:
(Function (){
Function stopWatchDog (watchDogId ){
Alert ("aa ");
Var url = '<s: url value = "/watchDog/stopWatchDog"/> ';
Var params = {
WatchDogId: watchDogId,
};
$. Post (url, params, function (data ){
If (data. success ){
CloseDialog ();
TbGrid. send ();
} Else {
If (data. errorMsg! = Null & data. errorMsg! = ""){
JAlert (data. errorMsg, "system message ");
} Else {
JAlert ("Stop exception", "system message ");
}
$ ("# SaveBtn"). removeAttr ("disabled ");
$ ("# SaveBtn" ).css ("color", "white ");
}
}, "Json ");
}
})();

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.