Determine how to execute the following code example after loading css _ javascript tips-js tutorial

Source: Internet
Author: User
This article mainly introduces how to execute subsequent code after loading css. If you need it, refer to the framework of the recently written project and write a JQueryMessageBox class to use jquery callback, the Code is as follows:

// If the ui. js is not included, reference if ($ ('script [src $ = "" jquery-ui-1.8.11.custom.min.js? 1.1.23 ""] '). length = 0) {$ (""""). AppendTo ('head') ;}// if no css is loaded, load if ($ ('link [ref $ = "" jquery-ui-1.8.14.custom.css? 1.1.23 ""] '). length = 0) {$ ('
 '). AppendTo ('head'); // dialog () script }}

But the CSS code will not be loaded immediately, so there will be no style when the dialog is displayed (in IE9, you can, because in IE9, CSS will be downloaded even later, the page elements will be re-drawn, but IE8 won't ). to solve this problem, you can use ajax to display the dialog after the css is loaded. The Code is as follows:

If ($ ('link [ref $ = "" jquery-ui-1.8.14.custom.css? 1.1.23 ""] '). length = 0) {$. ajax ({url: '/css/jquery-ui-1.8.14.custom.css', success: function (data) {// create a style element, and append it to the head. // Replace the images path $ (''). AppendTo ('head'); // dialog () script ;}});} else {// dialog () script ;}
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.