如果您只需運行此代碼並查看您是否發現「意外標識符」,則將非常感激。非常感謝你們。 Javascript bookmarket意外標識符?
javascript:(function() {
url = document.location.href;
if (url.match('youtube.com/watch?')) {
var s=document.createElement('script');
s.setAttribute('src','http://jquery.com/src/jquery-latest.js');
document.getElementsByTagName('body')[0].appendChild(s);
dataString = 'url=' url;
$.ajax({
type: 'POST',
url: '/create/',
data: dataString,
success: function(data){ console.log(data); }
});
}
else {
alert('This is not a youtube video.')
}
})();
+1令人敬畏。 – alex 2011-03-29 03:43:09
一個小小的錯誤...總得討厭那些。多謝,夥計。 – Andrew 2011-03-29 04:10:57