开发者

What is the error in this code?

开发者 https://www.devze.com 2023-04-03 08:18 出处:网络
I am new to html5 web app programming. I found the following code for making a simple app: <script class=\"hiddenSpellError\"><!--mce:0--></script>

I am new to html5 web app programming. I found the following code for making a simple app:

<script class="hiddenSpellError"><!--mce:0--></script>

senchatouch/1.1.0/sencha-touch.css" rel="stylesheet" type="text/css" />

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

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

but i am not getting the desire开发者_运维百科d output. Pls help


You are referencing external resources in the last two lines:

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

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

Do you have files called "app.css" and "app.js" in the same directory as your html file? Also, what is your desired output?


I think you meant:

<link href="senchatouch/1.1.0/sencha-touch.css" rel="stylesheet" type="text/css" />

for the second line.

0

精彩评论

暂无评论...
验证码 换一张
取 消