如何将JQuery插件添加到UIWebview?

时间:2013-05-13 10:31:10

标签: jquery ios ipad uiwebview gantt-chart

我想知道如何将jQuery插件(https://github.com/thegrubbsian/jquery.ganttView)添加到UIWebView中,因为我想用它显示甘特图?

请告诉我是否有任何教程或步骤应该遵循?

谢谢,Kanishka。

1 个答案:

答案 0 :(得分:0)

可以有一个.html文件,例如 -

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>TITLE</title>

<script type="text/javascript" src="Plugin.js"></script>
<link type="text/css" href="Plugin.css" rel="stylesheet"/>    
</head>
<body>
<div id="Pluginwrapper">

<div id="Plugincontainer"></div>    
</div>
</body>
</html>

在App捆绑包中添加.html file, .js file and .css(即所有插件文件)文件,并且为了在UIWebView中显示内容,只需制作{{1在Xcode的构建阶段选项卡中将文件和.html文件作为捆绑资源

然后使用 -

.js