我正在尝试使用jquery在while循环中单击查看按钮时显示div详细信息,但它只显示第一条记录而不显示其余记录,谁能告诉我解决这个问题..
这是示例代码:
<html>
<head>
<script src="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$(function(){
$('#view').click(function() {
var user=$('#user').text();
alert(user);
});
});
</script>
<style type="text/css">
#content div{display:inline-block;}
</style>
</head>
<body>
<?php
$i=0;
while($i<5)
{
?>
<div id="content">
<div id="user">Street(<?=$i+1?>)</div>
<div id="view" style="color:green;cursor:pointer;">View</div>
</div>
<?php
$i++;
}
?>
</body>
</html>