可能重複:
How to insert PHP into jQuery?如何插入PHP jQuery的/ JavaScript的
如何插入jQuery的/ JavaScript的PHP的?例如
PHP
$tot =4;
的JavaScript
$(function()
if(can put php here?)
eg : if(<?php tot > 4 ?>)
我希望把PHP的 'if語句',它`可能嗎?
可能重複:
How to insert PHP into jQuery?如何插入PHP jQuery的/ JavaScript的
如何插入jQuery的/ JavaScript的PHP的?例如
PHP
$tot =4;
的JavaScript
$(function()
if(can put php here?)
eg : if(<?php tot > 4 ?>)
我希望把PHP的 'if語句',它`可能嗎?
您可以使用
if (<?php echo $tot; ?> > 4)
嘗試:
$(function() {
if(<?=$tot?> > 4) {
[...]
}
});
的<?=$tot?>
部分將在JavaScript代碼有效echo
你$tot
變量。請注意,如果$tot
在轉換爲字符串時評估爲''
,則可能會在JavaScript代碼中創建語法錯誤。