私は index.html と edit.html を持っていて、次のことを行おうとしていますが、2 番目と 3 番目のリンクをクリックすると、エミュレーターに次のようなエラーが表示されました: アプリケーション エラー、ネットワーク エラーが発生しました (file://android_asset/www/ edit.html?id=2) および (file://android_asset/www/edit.html?id=3)
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=320; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>PhoneGap</title>
<link rel="stylesheet" href="master.css" type="text/css" media="screen" title="no title">
<script type="text/javascript" charset="utf-8" src="cordova-1.8.0.js"></script>
<script type="text/javascript" charset="utf-8" src="main.js"></script>
</head>
<body id="stage" class="theme">
<h1>Welcome to XXX!</h1>
<a href = "edit.html"> 1</a>
<a href = "edit.html?id=2"> 2</a>
<a href = "edit.html?id=3"> 3</a>
</body>
</html>
私の edit.html は単なる html ヘッダーと本文です。
理由はありますか?