gpt4 book ai didi

javascript - 如何将变量从 php 插入到 p 标签(html)中?

转载 作者:行者123 更新时间:2023-11-30 11:37:21 24 4
gpt4 key购买 nike

我正在尝试让我的 Twitter 关注者数量显示在我的网站上。我已经设置了 Twitter API 来接收关注者计数,并且已经使用 echo 进行了测试并且运行良好。

问题是我不知道如何将该值传递到 html 中。

这是获取 Twitter 计数的代码:

<?php 

/*
* Requires the "Twitter API" wrapper by James Mallison
* to be found at https://github.com/J7mbo/twitter-api-php
*
* The way how to get a follower count was posted by Amal Murali
* on http://stackoverflow.com/questions/17409227/follower-count-number-in-twitter
*/

require_once('twitterapi/TwitterAPIExchange.php'); // adjust server path accordingly

// GET YOUR TOKENS AND KEYS at https://dev.twitter.com/apps/
$settings = array(
'oauth_access_token' => "SECRET", // enter your data here
'oauth_access_token_secret' => "SECRET", // enter your data here
'consumer_key' => "SECRET", // enter your data here
'consumer_secret' => "SECRET" // enter your data here
);

$ta_url = 'https://api.twitter.com/1.1/statuses/user_timeline.json';
$getfield = '?screen_name=SECRET'; // enter your twitter name without the "@" here
$requestMethod = 'GET';
$twitter = new TwitterAPIExchange($settings);
$follow_count=$twitter->setGetfield($getfield)
->buildOauth($ta_url, $requestMethod)
->performRequest();
$data = json_decode($follow_count, true);
$followers_count = $data[0]['user']['followers_count'];

?>

这是将 $followers_count 变量传递到 html 的代码。

这是一个 id 为“twit-follow-count”的 span 标签。

<script type="text/javascript">

$( document ).ready(function() {
$('#twit-follow-count').html($followers_count);
});

</script>

如有任何帮助,我们将不胜感激!

最佳答案

<script type="text/javascript">

$( document ).ready(function() {
$('#twit-follow-count').html('<?php echo $followers_count; ?>');
});

</script>

关于javascript - 如何将变量从 php 插入到 p 标签(html)中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43897835/

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