innerHTML からコンテンツが動的に生成される div があり、検証のために jQuery を使用してこれらの要素をターゲットにすることはできません。たとえば、これはページです。
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
</head>
<body>
<span id="alert1">Alert1</span>
<input type="button" value="Click Me" id="button1" />
<div id="empty"></div>
</body>
</html>
これはjsコードです:
<script type = "text/javascript">
$(document).ready(function() {
$('#button1').click(function() {
var html = "uname <input type='text' id='uname'><br />password <input type='text' id='password'><br /><span id='alert'>Alert</span>";
$('#empty').html(html);
});
$('#alert').click(function() {
alert('Alert');
});
$('#alert1').click(function() {
alert('Alert1');
});
});
</script>
ID alert1 のスパンのアラートは機能しますが、innerHTML または .html() を使用して設定された ID アラートは機能しません。これを修正するにはどうすればよいですか?
よろしくお願いします</p>