※ ChatGPTを利用し、要約された質問です(原文:jQueryでajax)
jQueryでajaxを使ったセレクトボックスのボタンクリックイベントが検知されない
ajax(jQuery使用)を使った以下のサンプルは、
セレクトボックスを選択すると、ボタンを表示するのですが、
そのボタンをクリックしても、アラート(This is success!)が表示されません。
ajaxで吐き出した<button>ボタン</button>のボタンのクリックイベントが
検知しないような感じですが、いったいどこが間違っているのかわかりません。
どなたか、ご教授いただけると助かります。
htmlソース
-------------------------------------------
<meta http-equiv="content-script-Type" content="text/javascript" />
<meta http-equiv="content-style-Type" content="text/css" />
<link rel="stylesheet" href="./photo.css" media="all" />
<title> テスト</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("button").click(function()
{
alert("Test is success!");
});
$(".first").change(function()
{
var param = '';
$.ajax
({
type: "POST",
url: "ajax.php",
data: param,
cache: false,
success: function(res)
{
$("#result").html(res);
}
});
});
});
</script>
</head>
<body>
<select name="first" class="first" id="first">
<option value="1">項目1</option>
<option value="2">項目2</option>
</select>
<p>結果:</p>
<div id="result" style="width:808px;"></div>
</body>
</html>
phpソース
----------------------------------------
<?php
echo '<button>ボタン</button>';
?>
お礼
早速のご回答ありがとうございます。 教えていただいた方法で無事解決しました。 最高です! 本当にありがとうございました。