質問編集履歴

1

表示したいページのイメージとソースの詳細を追記しました

2016/08/03 11:50

投稿

JimMachine
JimMachine

スコア7

test CHANGED
File without changes
test CHANGED
@@ -135,3 +135,95 @@
135
135
  とご教授をいただいておりますが、表示まで至っておりません。
136
136
 
137
137
  極力ページのリロードを行わないようにしたいです。
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+ ページの遷移比較ができるように追記掲載します
146
+
147
+
148
+
149
+ 以下現行のページ表示状態
150
+
151
+ ```html
152
+
153
+ </head>
154
+
155
+ <body>
156
+
157
+ <h1>テストプロジェクト</h1>
158
+
159
+ </body>
160
+
161
+ </html><h2>ajaxテストプロジェクト</h2>
162
+
163
+ <form method="POST">
164
+
165
+ <input type="button" name="hoge" value="viewA">
166
+
167
+ <input type="button" name="hoge" value="viewB">
168
+
169
+ </form><pre class='xdebug-var-dump' dir='ltr'><font color='#3465a4'>null</font>
170
+
171
+ </pre>The parameter of "request" is not found.
172
+
173
+ ```
174
+
175
+ 現行の表示されているページイメージ
176
+
177
+ ---
178
+
179
+ ![![現行の表示結果イメージ](e92f65b86d348b513297eb88bea73c3c.png)](70e20e3da2e272055d64e7a26dd11113.png)
180
+
181
+
182
+
183
+
184
+
185
+
186
+
187
+ 以下、期待する遷移後のページ結果
188
+
189
+ ```html
190
+
191
+ <!DOCTYPE html>
192
+
193
+ <html>
194
+
195
+ <head>
196
+
197
+
198
+
199
+ ~~~~~略~~~~
200
+
201
+ </head>
202
+
203
+ <body>
204
+
205
+ <h1>テストプロジェクト</h1>
206
+
207
+ </body>
208
+
209
+ </html><h2>ajaxテストプロジェクト</h2>
210
+
211
+ <form method="POST">
212
+
213
+ <input type="button" name="hoge" value="viewA">
214
+
215
+ <input type="button" name="hoge" value="viewB">
216
+
217
+ </form><pre class='xdebug-var-dump' dir='ltr'><small>string</small> <font color='#cc0000'>'viewA'</font> <i>(length=5)</i>
218
+
219
+ </pre>OK
220
+
221
+ ```
222
+
223
+
224
+
225
+ 結果イメージ
226
+
227
+ ---
228
+
229
+ ![期待するページ結果](21a6e2f83c97eafb8bdc22ca9325a55c.png)