有谁知道 twitter 分享按钮的文本中是否允许使用问号?我有以下代码,当我单击共享并出现弹出按钮时,消息停止在“谁是你最喜欢的候选人”。它不会读取超过问号的文本。
<?php
$text = "Who's your favorite candidate ? This is another message";?>
<a href="https://twitter.com/share?text=<?php echo $text; ?>&url=<?php echo $decoded_url; ?>&hashtags=contesthashtag" class="twitter-share-button" data-lang="<?php echo $lang; ?>" data-hashtags="contesthashtag" data-url="<?php echo $fanpage_url; ?>" data-text="<?php echo $text; ?>">Click here to share on Twitter</a>
多谢!