Jump to content
  • Sign Up
  • 0

Не работает автоматический переход по ссылке из document.anchors


SAVC
 Share

Question

4 answers to this question

Recommended Posts

  • 0

Если можно, поподробнее ответьте.

С document.getElementsByTagName я сам могу сделать. Так и сделал. Немного по-другому только.

<html>
<head>
    <script>
        function start(){
            //document.anchors[0].click();
            document.getElementsByTagName("A")[0].click();
        }
    </script>
</head>
<body onload="start()">
    <a href="index-2.html"></a>
</body>
</html>

 

Edited by SAVC
Link to comment
Share on other sites

  • 0

Вы ведь для перехода к тому месту, где находится якорный элемент, будете кликать не на него самого, а на ссылку на него.

Если хотите обработать click() именно на данной метке, либо добавьте ей атрибут href, либо обработчик события onClick.

https://jsfiddle.net/52xnsw4g/

UPD. Может, вы просто путаете коллекции, которые возвращаются двумя этими способами:

  • document.anchors вернет только список якорей (элементы <a>, у которых представлен атрибут name);
  • document.getElementsByTagName('a') вернет все элементы <a> на странице, включая первые.
Link to comment
Share on other sites

  • 0

А! Вот, теперь понятно, теперь заработало!

<html>
<head>
        <script>
                function start(){
                        document.anchors[0].click();
                        //document.getElementsByTagName("A")[0].click();
                }
        </script>
</head>
<body onload="start()">
        <a href="index-2.html" name="1"></a>
</body>
</html>

Спасибо!

Edited by SAVC
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy