7

可能重复:
将变量从 php 传递到 javascript

我正在动态生成一个列表。我想让每一行悬停在鼠标悬停上并且可以点击链接。我希望链接传递行内容的 id。

基本上:

foreach ($courses as $cid=>cinfo){ 
  $univ = $cinfo['univ'];
  $desc = $cinfo['desc'];
  $size = $cinfo['size'];
  $start = $cinfo['start'];
  print "<div class='rc_desc' id='rc_desc$cid'>"."$desc<br/>"."<b>$univ</b><br/>".
        "<span>Number of students</span>: $size<br/>".
        "<span>Started at</span>: ".date('F d, Y',strtotime($start))."<br/>".
}

<script>
    $(function ()
    {
      $('#rc_desc$cid').hover(function ()
      {
        $(this).toggleClass('.tr');
      });
      $('#rc_desc$cid').click(function ()
      {
        $(location).attr('href','student.php?$cid');
      });
    });
  </script>

问题出在 js/jquery 中。我希望能够在单击时获取 $cid 并将其传递给 student.php 页面。上面的 php 代码可以工作,但 js 当然不会。我知道客户端与服务器端语言的基础。这个问题不需要讲课。我知道我不能完全做到这一点,但这是我最终想要发生的事情。关于如何简单地实现这一目标的任何想法?提前感谢我的朋友们!

4

6 回答 6

9

是的,如果您<script>在 PHP 代码中包含该部分,您可以执行类似于以下的操作:

<script>
    var foo = <?php echo $foo; ?>;
</script>

在您的情况下,您将查看以下代码结构:

<script>
    $(function () {
        $('#rc_desc<?php echo $cid ?>').hover(function () {
            $(this).toggleClass('.tr');
        });
        $('#rc_desc<?php echo $cid ?>').click(function () {
            $(location).attr('href', 'student.php?<?php echo $cid ?>');
        });
    });
</script>

之所以能做到这一点,是因为尽管 Javascript 是在客户端运行的,但它在呈现在页面上之前首先在服务器端进行了处理。因此,它将$cid用您包含的实例替换所有必要的实例。

享受和好运!

编辑

<script>
    $(function () {
        $('.rc_desc').hover(function () {
            $(this).toggleClass('.tr ');
        });
        $('.rc_desc').click(function () {
            $(location).attr('href', 'student.php?' + $(this).attr('id').split('rc_desc')[1]);
        });
    });
</script>
于 2012-07-13T16:40:28.200 回答
5

你可以这样做:

    $(location).attr('href','<?php echo $cid ?>');

javascript 代码不知道它来自 php,它显示为它的常量(文字)。

于 2012-07-13T16:40:21.130 回答
2

是的,有可能。你所要做的就是把你<?PHP echo $cid; ?>的放在你需要的地方

<script>
$(function ()
{
  $('#rc_desc<?PHP echo $cid; ?>').hover(function ()
  {
    $(this).toggleClass('.tr');
  });
  $('#rc_desc$cid').click(function ()
  {
    $(location).attr('href','student.php?<?PHP echo $cid; ?>');
  });
});

这是可能的,因为当脚本被放入页面时,cid 已经被服务器上的字符串替换。由于 PHP 是服务器驱动的,所以在它返回 html/script 之前,它就像你自己放入它一样。

于 2012-07-13T16:40:21.807 回答
1

几乎没有办法实际交流 PHP 和 JavaScript。但是,最好和最简单的方法是在属性中设置 ID。新的 HTML5 数据属性将是完美的。

例如,有一个锚标签

<span data-id="22">some event</a>

进而:

$(this).attr('href','student.php?'+$(this).attr('data-id'));

或者只是使用

<?php echo $id; ?>

如果不是外部JS文件

于 2012-07-13T16:42:40.553 回答
1

我认为你阻止应该是:

<script>
    $(function ()
    {
    <?php foreach($courses as $cid=>cinfo) : ?>

      $('#rc_desc<?php echo $cid; ?>').hover(function ()
      {
        $(this).toggleClass('.tr');
      });
      $('#rc_desc<?php echo $cid; ?>').click(function ()
      {
        $(location).attr('href','student.php?<?php echo $cid; ?>');
      }); 
      ";?>
      <?php endforeach; ?>
    });
  </script>

更新

但你真的不需要这样做,你有

"<div class='rc_desc' data-id='$cid' id='rc_desc$cid'>"."$desc<br/>"."<b>$univ</b><br/>".
"<span>Number of students</span>: $size<br/>".
"<span>Started at</span>: ".date('F d, Y',strtotime($start))."<br/>".

你可以试试这个

$(function (){
      $('.rc_desc').hover(function ()
      {
        $(this).toggleClass('.tr');
      });
      $('.rc_desc').click(function ()
      {
        attrId = $(this).attr("data-id");
        $(location).attr('href','student.php?'+id);
      });
});
于 2012-07-13T16:44:27.673 回答
1

试试这个代码

foreach ($courses as $cid=>cinfo){ 
  $univ = $cinfo['univ'];
  $desc = $cinfo['desc'];
  $size = $cinfo['size'];
  $start = $cinfo['start'];
  print "<div class='rc_desc' data-id='$cid' id='rc_desc$cid'>"."$desc<br/>"."<b>$univ</b><br/>".
        "<span>Number of students</span>: $size<br/>".
        "<span>Started at</span>: ".date('F d, Y',strtotime($start))."<br/>".
}

<script>
    $(function ()
    {
      $('#rc_desc$cid').hover(function ()
      {
        $(this).toggleClass('.tr');
      });
      $('.rc_desc').click(function ()
      {
        $(location).attr('href','student.php?' + $(this).attr("data-id"));

       // if you want to redirect the page do this
       // window.location.href = 'student.php?' + $(this).attr("data-id");
      });
    });
  </script>
于 2012-07-13T16:50:52.010 回答