<script type="text/javascript">
slogan = {
variation: <?php echo $variation ?>,
text: 'xxxxxxxxx'
};
$.get('http://ondemand.nodebox.net/libraries/slogantext/render?variation.value=' + slogan.variation, function(data) {
slogan.text = data;
alert(slogan.text);
});
twttr.events.bind('tweet', function (event) {
$.post('save.php', {text: slogan.text, variation: slogan.variation});
});
var myurl = "<?php echo $page_url ?>";
var mytext = "Dit is mijn slogan voor 't Stad!";
var url = "https://twitter.com/intent/tweet" +
"?url=" + encodeURIComponent(myurl) +
"&text=" + encodeURIComponent(mytext);
document.getElementById("postToTwitter").href = url;
我加了一个额外的警报来检查,除了IE之外,所有浏览器都显示警报,我做错了什么?这里的目标是添加一个口号文本,它被渲染到我的数据库的其他地方,所以我可以在我正在工作的网站上显示它们。这一切在其他浏览器中都可以正常工作。谢谢。