load external URL into modal jquery ui dialog

后端 未结 6 825
渐次进展
渐次进展 2020-12-05 02:35

why doesn\'t this display ibm.com into a 400x500px modal? The section appears to be correct, but it doesn\'t cause the popup modal to appear.



        
6条回答
  •  自闭症患者
    2020-12-05 03:06

    Modals always load the content into an element on the page, which more often than not is a div. Think of this div as the iframe equivalent when it comes to jQuery UI Dialogs. Now it depends on your requirements whether you want static content that resides within the page or you want to fetch the content from some other location. You may use this code and see if it works for you:

    
    
    
    
    test
    
    
    
    
    
    
    
    
        

    First open a modal dialog

    There are, however, a few things which you should keep in mind. You will not be able to load remote URL's on your local system, you need to upload to a server if you want to load remote URL. Even then, you may only load URL's which belong to the same domain; e.g. if you upload this file to 'www.example.com' you may only access files hosted on 'www.example.com'. For loading external links this might help. All this information you will find in the link as suggested by @Robin.

提交回复
热议问题