gpt4 book ai didi

javascript - 在条件后打开 fancybox,并在 .txt 文件中读取值

转载 作者:行者123 更新时间:2023-12-02 17:22:32 25 4
gpt4 key购买 nike

我想在进入网站时自动打开一个fancybox,并且txt文件中读取的值为“1”
fancybox 的内容将成为另一个页面的 iframe(alert.php)

要读取 txt 的值,我有这个

<?php
$line = file('alert.txt');
$valrec= $line[0]; //if "1" the fancybox appear
?>

我在使用所读内容时遇到困难。

已经看过

Open fancyBox automatically?

Open fancybox from function

how to just open a fancybox window (not onclick)

最佳答案

补充之前的答案,您可以这样做:

<?php
$line = file('alert.txt');
$valrec = $line[0]; //if "1" the fancybox appear
if($valrec == 1){
?>
<script type="text/javascript">
jQuery(document).ready(function($){
$.fancybox({
href: "alert.php",
type: "iframe"
});
}); //ready
</script>
<?php
}; // closes if
?>

关于javascript - 在条件后打开 fancybox,并在 .txt 文件中读取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23796418/

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