phonegapでは、1つのjqueryモバイルフレームワークを使用します。そして、ページのURLを使用して、フォームデータをdivである次のページに渡したいと思います。GetElementByIDを使用してパラメーターを取得しようとしています。「[objectHTMLDivElement]」と表示されます。私は私が望んでいた結果ではありません。どうすれば解決できますか?
以下は次のページに変更する関数ですDIVは私のphonegapのコードです:
<script type="text/javascript">
$('#home').live('pagecreate',function(event) {
$("#form").submit( function (e) {
e.preventDefault();
var x=document.getElementById("search");
$.mobile.changePage("#page1?param1="+x);
});
});
</script>
そしてフォームhtml:
<form id="form" method="POST" action="page1" data-ajax="false">
<div data-role="fieldcontain" id="search">
<fieldset data-role="controlgroup">
<label for="search">
Search
</label>
<input name="search" id="search" placeholder="" value="" type="search" />
</fieldset>
</div>
<div data-role="fieldcontain" id="searchmethod">
<label for="searchmethod">
</label>
<select id="searchmethod" name="searchmethod" data-theme="e">
<option value="keyword">
Keyword
</option>
</select>
</div>
<div data-role="fieldcontain" id="searchlocation">
<label for="searchlocation">
</label>
<select name="searchlocation" data-theme="e">
<option value="Entire Collection">
Entire Collection
</option>
</select>
</div>
<input type="submit" value="Submit" />
</form>