对,所以我是Web开发的初学者,我遇到了这段代码:
$('#tweet-quote').on('click', function() {
if(!inIframe()) {
openURL('https://twitter.com/intent/tweet?hashtags=quotes&related=freecodecamp&text=' + encodeURIComponent('"' + currentQuote + '" ' + currentAuthor));
}
});
除此以外,我什么都明白
inIframe()
此功能是什么?我在此特定功能上找不到任何东西。