第 1 页
<html>
<head>
<script src="jquery-1.8.3.js" type="text/javascript"></script>
</head></head>
<body><div id="main"></div> </body>
<script>$('div[id=main]').load('page2.php')
$('span[id*=temp]').on('click',function(){
alert(this.id); }); //this block of code not working!!
</script>
</html>
第2页
<div>
<span id="temp">
this is demo
</span>
</div>
基本上我想在单击标签时在主 div 中再次加载 page2 但无法获取第一页中标签的 id,page1 的脚本不适用于第 2 页的项目或标签