我刚加入phonegap,我想要一个内置的测试应用程序。我写了一些代码index.html,它正确地在Web浏览器上运行。但在xcode中。或模拟器没有运行。检查一下。我的代码
<html>
<head>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
var a=0;
$(document).ready(function(){
$(".class").click(function(){
if(a===0){
$("#abc").css({"position":"absolute","height":"500px"});
a=1;
}else
{
$("#abc").css({"position":"absolute","height":"50px"});
a=0;
}
});
});
</script>
<script type="text/javascript">
function kkk(){
alert("okey");
}
</script>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button id="abc" class="class" onclick="kkk()">Click me</button>
<button id="abd" style="position:absolute; left:250px;width:100px"> me</button>
</body>
</html>
任何建议都会受到赞赏。
答案 0 :(得分:0)
使用phonegap并收听已准备好的设备。然后在处理程序中执行你的js