-1

可能重复:
如何将 PHP 插入 jQuery?

如何在 jquery/javascript 上插入 php?例如

php

$tot =4;

javascript

$(function()

    if( can put php here? )
    eg : if( <?php tot > 4 ?> )

我想把php放在'if语句'中,有可能吗?

4

2 回答 2

1

尝试:

$(function() {
  if(<?=$tot?> > 4) {
    [...]
  }
});

<?=$tot?>部分将有效地在 javascript 代码中使用echo您的变量。$tot请注意,如果在转换为字符串时$tot计算结果为,则可能会在 javascript 代码中产生语法错误。''

于 2012-12-07T08:12:04.067 回答
0

您可以使用
if (<?php echo $tot; ?> > 4)

于 2012-12-07T08:11:28.413 回答