Как выполнить функцию по определенному URL - PullRequest
0 голосов
/ 25 сентября 2019

У меня есть страница, скажем, http://localhost:1234 У меня есть некоторый JS-код, скажем:

var links = document.getElementsByTagName('a');

for (var k = 0; k < links.length; k++) {

    if (links[k].getAttribute('title') == null) {
        links[k].style.border = '5px dashed red'
    }
}

var images = document.getElementsByTagName('img');

for (var t = 0; t < images.length; t++) {

    if ((images[t].getAttribute('alt') == null) || (images[t].getAttribute('alt') == '')) {
        images[t].style.border = '5px dashed red'
    }
}

Чего я хочу добиться, так это выполнить приведенный выше код только в случае посещенияhttp://localhost:1234? Init но все же для страницы индекса.Спасибо!

1 Ответ

1 голос
/ 25 сентября 2019
In your js code check for window.location.href or document.URL if it matches with http://localhost:1234?init then you can call your function.

For Example:

if(window.location.href == 'http://localhost:1234?init') {functionCall();}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...