的alert
行爲這樣這個網站上,也許是因爲在通話後重裝的,但有前面加上它的確定我。
$(document).ready(function() {
$('body').prepend("toto"); // your code here
});
另外,您不需要使用ready函數,greasmonkey可以在正確的時間啓動您的腳本。
但問題是:
- 我想你想在所有的AJAX元件裝入做你的東西。所以最好的方法就是觀察這個dom。
- 由於網站使用點擊AJAX請求更改當前頁面,並且
hashchange
事件不起作用,我使用一些技巧來聆聽任何頁面更改。
有了這個腳本,您可以使用alert
功能:
// ==UserScript==
// @name test
// @include https://www.younow.com/*
// @version 1
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
// ==/UserScript==
var observer = null;
initObserver();
function initObserver()
{
observer = new MutationObserver(onMutation);
observer.observe(document,
{
childList: true, // report added/removed nodes
subtree: true, // observe any descendant elements
});
}
$(window).on('hashchange', function(e)
{
initObserver();
});
intervalMutation = setInterval(onMutation.bind(null, null), 1000);
function locationObserver()
{
var oldLocation = location.href;
setInterval(function() {
if(location.href != oldLocation) {
onMutation(null);
oldLocation = location.href
}
}, 1000); // check every second
}
locationObserver();
function onMutation(mutations)
{
// Check if this class exits:
if($('.trending-now').length ||
$('.ynicon ynicon-chat').length ||
$('.trending_title').length ||
$('.trending-tags-list').length)
{
// Disconnect the observer:
observer.disconnect();
// Clear the interval :
clearInterval(intervalMutation);
// Call your code:
pageReady();
}
}
function pageReady()
{
// your code here:
alert('start');
}