在foreach循环中仅单击一个div时,所有div内容都会发生变化

时间:2013-12-16 05:51:52

标签: php jquery

我使用php foreach循环显示内容,

<?php
foreach($result as $value)
{
?>
<div class="content">
<?=$value['title']?>
</div>
<?php

}
?>

我正在应用jquery clck事件来使用jquery更改上述foreach循环中特定div的内容

$(function()
{
   $('.content').click(function()
   {
       $(this).html('welcome to app');
   });
});

所有div的内容都在变化,任何人都可以告诉我如何在点击它时选择唯一特定的div内容。

1 个答案:

答案 0 :(得分:1)

我已经检查了你的问题,它似乎在我的电脑上工作正常。如果您能共享浏览器信息以供进一步调查,我将不胜感激。与此同时,我正在分享完美的代码。

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
     <head>
      <title> New Document </title>
      <meta name="Generator" content="EditPlus">
      <meta name="Author" content="">
      <meta name="Keywords" content="">
      <meta name="Description" content="">
      <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
     </head>

     <body>
      <div class="content">Lorem Ipsum</div>
      <div class="content">Lorem Ipsum</div>
      <div class="content">Lorem Ipsum</div>
      <div class="content">Lorem Ipsum</div>
      <div class="content">Lorem Ipsum</div>
      <div class="content">Lorem Ipsum</div>
      <div class="content">Lorem Ipsum</div>
      <div class="content">Lorem Ipsum</div>
     </body>
     <script>
     $(function()
     {
        $('.content').click(function() {
            $(this).html('Hello');
        })
     });
    </script>
    </html>