带弹出窗口的自定义twitter按钮

时间:2014-08-27 16:50:32

标签: javascript jquery twitter

这是我的Twitter按钮的代码:

var tweeturl = 'http://twitter.com/share?url=' + encodeURI(window.location) +'&via=MyTwitterUserName&text=The editable text I want to include automatically in the tweet';

// Place the text on the page. Change body to wherever you want the button placed. 
$('div[data-role="footer"] > div').append('<a id="mycustomtwitterbutton" href=" ' + tweeturl + ' "><img src="/Content/images/share_twitter.jpg"></a>')

我是一个简单的问题。

我想打开链接作为弹出对话框,而不是在新页面中,当我点击&#34; OK&#34;要确认链接的推文,它会在我的应用程序中返回。

你能帮助我吗?

谢谢

1 个答案:

答案 0 :(得分:0)

如果没有更多代码,很难确切地告诉您要做什么,但弹出窗口的javascript版本如下。

var actwin=window.open(location,'mywindow',
'width=706,height=630,status=no,location=no,menubar=no,scrollbars=no,resizable=yes');
actwin.focus();

这是确认消息的一些javascript代码。

var x=window.confirm("Question?");
if (x){
 ///code
}
else{}