シリアル化データをテーブル入力から別のHTMLページに表示しようとしています。私が現在持っているのは、JavaScriptからアラートにデータをシリアライズすることです。(HTML/JavaScript)データを別のHTMLページにシリアル化する表示
HTMLファイルのコードブロック
<form id="form">
<div class="table-responsive">
<table class="table table-bordered table-striped table-highlight">
<thead class="thead-inverse">
<tr>
<th>Race</th>
<th>Equity Partners</th>
<th>Non-Equity Partners</th>
<th>Associates</th>
<th>Counsel</th>
<th>Other Lawyers</th>
<th>Totals</th>
</tr>
</thead>
<tbody>
<tr>
<td><label>American Indian/Alaska Native</label></td>
<td><input type="text" onkeypress='return event.charCode >= 48 && event.charCode <= 57' class="form-control" name="AmericanIndian_EP" value="" placeholder="Enter Value Here" /></td>
<td><input type="text" onkeypress='return event.charCode >= 48 && event.charCode <= 57' class="form-control" name="AmericanIndian_NEP" value="" placeholder="Enter Value Here" /></td>
<td><input type="text" onkeypress='return event.charCode >= 48 && event.charCode <= 57' class="form-control" name="AmericanIndian_A" value="" placeholder="Enter Value Here" /></td>
<td><input type="text" onkeypress='return event.charCode >= 48 && event.charCode <= 57' class="form-control" name="AmericanIndian1_C" value="" placeholder="Enter Value Here" /></td>
<td><input type="text" onkeypress='return event.charCode >= 48 && event.charCode <= 57' class="form-control" name="AmericanIndian_OL" value="" placeholder="Enter Value Here" /></td>
<td><input type="text" onkeypress='return event.charCode >= 48 && event.charCode <= 57' class="form-control" name="AmericanIndian_T" value="" placeholder="Enter Value Here" /></td>
</tr>
のJavaScriptファイルのコードブロック
$("#btn-ser1").click(function(){
data_array = $("#form").serialize();
alert(data_array);
JavaScriptデータを別のページに表示させることはできません。 1つの選択肢は、サーバー側スクリプトページを介してデータベースに 'AJAX'を使ってデータを' POST 'し、出力ページのデータベースからそれを取得することです。別のオプションは、データを 'cookie'または' localStorage'に格納することです。 –