gpt4 book ai didi

javascript - 我可以在 Drupal 7 的 jquery 脚本中使用 php if 语句吗?

转载 作者:行者123 更新时间:2023-11-29 19:15:11 26 4
gpt4 key购买 nike

我有一个 jquery 脚本,可以加载文档就绪,如果用户已经单击了一个按钮(按钮字段),我想显示一个隐藏的弹出窗口。但我检查的条件是使用 php 代码。

<script>
$( document ).ready(function() {
if (<?php $user_fields->field_button['und'][0]['value'] = 1 ?>) {
var popup = document.getElementById("testpopup1").style.visibility = "visible";
alert("x");
}
});
</script>

但是这种方式不行。有没有办法将 php 代码放在我的 jquery 代码的 if 语句中,或者我必须尝试其他方法?

最佳答案

你不需要 Javascript 来做一个 if and all。

在你的 HTML 中

<?php if ($user_fields->field_button['und'][0]['value'] === 1) { ?>

<div id="testpopup1">Your content</div>

<script>alert('x');</script>

<?php } ?>

关于javascript - 我可以在 Drupal 7 的 jquery 脚本中使用 php if 语句吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35898574/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com