我有这个php变量$post_price
,我想把它传递给那个脚本,
<script
data-transaction-total-amount=" what do i put here ?"></script>
答案 0 :(得分:0)
您的问题远非明确,但我认为您需要:
<?php
$post_price = 111;
?>
<script data-transaction-total-amount="<?=$post_price;?>">
</script>
答案 1 :(得分:0)
您只需使用<?php echo $post_price; ?>
<script
data-transaction-total-amount="<?php echo $post_price; ?>"></script>