UIWebView載入Js以及Css檔案

來源:互聯網
上載者:User

UIWebView載入Js以及Css檔案

2013-03-29

 

工作中需要該功能。該開始的時候無從下手,知道怎麼載入遠端Js檔案,但是對於本地js檔案的載入問題,就用了非常土的方法,分別讀取HTML字串,然後將這些字串拼接起來,組成一個完成的HTML檔案,然後載入到頁面中。

今天看到一個Demo用一個更加簡單+基本的方法實現了,

參考代碼:

<html> 

    <head>

    <title>My Awesome Page</title>

    <link rel="stylesheet"href = "test.css"type="text/css"/>

    <script type = "text/javascript"src = "222.js"></script>

    </head>

    <body>

        <h1 id="foo"onclick ="sayHello()">Click me!</h1>

    </body> 

</html>

你所需要做的就是將js以及cs檔案放到當前工程中即可

 

THE END!

相關文章

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.