How get tag attribute by javascript without using id or class? - Stack Overflow

I am new in javascript.I am trying this below code to get href attribute. <a href="facebook&quo

I am new in javascript.I am trying this below code to get href attribute.

<a href="facebook"  onclick="cheak()">Facebook</a>

        <script type="text/javascript">
        function cheak()
        {
            var a= document.getElementsByTagName("a").getAttribute('href');
            alert(a);
        }

</script>

I know this is working by below code

document.getElementById("myid").getAttribute('href');  // if I use any id

But in tag I don't want to use any id or class. How can I get this attribute without using any id or class in a tag.

I am new in javascript.I am trying this below code to get href attribute.

<a href="facebook."  onclick="cheak()">Facebook</a>

        <script type="text/javascript">
        function cheak()
        {
            var a= document.getElementsByTagName("a").getAttribute('href');
            alert(a);
        }

</script>

I know this is working by below code

document.getElementById("myid").getAttribute('href');  // if I use any id

But in tag I don't want to use any id or class. How can I get this attribute without using any id or class in a tag.

Share Improve this question asked Aug 21, 2015 at 6:40 Satu SultanaSatu Sultana 5371 gold badge11 silver badges23 bronze badges 2
  • Are you only trying to get the element from within the cheak function? If so, Zain's answer is the correct one. – T.J. Crowder Commented Aug 21, 2015 at 7:33
  • Side note: That href is incorrect. It should be href="http://facebook." or href="https://facebook.". Just href="facebook." is a relative URL. – T.J. Crowder Commented Aug 21, 2015 at 7:36
Add a ment  | 

3 Answers 3

Reset to default 3

Preface: Below, I've answered the question of how to find an element without using an id or class, in the general case. But if you just want the element from within your cheak function, then Zain's answer is the correct way to do that (with minimal changes to your code; arguably more correct might be modern event hookup).


But in tag I don't want to use any id or class. How can I get this attribute without using any id or class in a tag.

You reach for the Swiss army knife of element selection: document.querySelector. With it, you can use any CSS selector that matches the element:

var href = document.querySelector("any selector here").getAttribute("href");

querySelector returns the first match in the document. (There's also querySelectorAll, which returns a list.) They're both supported in all modern browsers, and also IE8.

Since you have the full power of CSS selectors, you can use anything about the position of the element in the document to find it.

There's too little context in your question for a specific example, but for instance if it's the first a in the document:

var href = document.querySelector("a").getAttribute("href");
alert(href);
<a href="facebook."  onclick="cheak()">Facebook</a>

Or using that onclick:

var href = document.querySelector("a[onclick='cheak()']").getAttribute("href");
alert(href);
<a href="facebook."  onclick="cheak()">Facebook</a>

If you pass in this when calling the function. it will pass the element reference to your function and you can use it to get value of href:

<a href="facebook."  onclick="cheak(this)">Facebook</a>
<!-- Note -----------------------------^^^^            -->

<script type="text/javascript">
function cheak(a) {
     alert(a.href); // Gives you the fully-resolved URL
     alert(a.getAttribute("href")); // Gives you the content of the `href` attribute (not fully-resolved)
}
</script>

the parameter data is the plete tag on which the function is called

<a href="www.facebook."  onclick="cheak(event)">Facebook</a>

     <script type="text/javascript">
    function cheak(e)
    {
       e.preventDefault(); 
      //  var a= document.getElementsByTagName("a").getAttribute('href');
        alert(e.target);
    }

</script>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745672410a4639484.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信