回答編集履歴

2

chousei

2019/09/24 01:17

投稿

yambejp
yambejp

スコア114833

test CHANGED
@@ -54,7 +54,7 @@
54
54
 
55
55
  </script>
56
56
 
57
- <h1><?php echo $test_string ?></h1>
57
+ <h1><?=$test_string;?></h1>
58
58
 
59
59
  <button type="button" name="button" id="test_button">btn</button>
60
60
 

1

chousei

2019/09/24 01:17

投稿

yambejp
yambejp

スコア114833

test CHANGED
@@ -38,7 +38,9 @@
38
38
 
39
39
  }).done(function(data){
40
40
 
41
- alert(data);
41
+ //alert(data);
42
+
43
+ $('h1').html(data);
42
44
 
43
45
  }).fail(function(xhr,err){
44
46