0
私はちょうどのPhoneGapに参加、私は、構築されたテストアプリケーションをしたいです。私はいくつかのコードindex.htmlを書く、それは適切にWebブラウザ上で実行されます。しかしxcodeで。またはシミュレータが動かない。ただそれをチェックしてください。私のコードjqueryをphonegap index.htmlの内部で使う方法は?
<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>
任意の提案をいただければ幸いです。