Unique element ID, even if element doesn't have one

前端 未结 13 1163
抹茶落季
抹茶落季 2020-12-14 00:43

I\'m writing a GreaseMonkey script where I\'m iterating through a bunch of elements. For each element, I need a string ID that I can use to reference that element later. The

相关标签:
13条回答
  • 2020-12-14 01:11

    A bit confused by the wording of your question - you say that you "need a string ID that [you] can use to reference that element later, " but that you "can't store the references in [your] script because when [you] need them, the GreaseMonkey script itself will have gone out of scope."

    If the script will have gone out of scope, then how are you referencing them later?!

    I am going to ignore the fact that I am confused by what you are getting at and tell you that I write Greasemonkey scripts quite often and can modify the DOM elements I access to give them an ID property. This is code you can use to get a pseudo-unique value for temporary use:

    var PseudoGuid = new (function() {
        this.empty = "00000000-0000-0000-0000-000000000000";
        this.GetNew = function() {
            var fourChars = function() {
                return (((1 + Math.random()) * 0x10000)|0).toString(16).substring(1).toUpperCase();
            }
            return (fourChars() + fourChars() + "-" + fourChars() + "-" + fourChars() + "-" + fourChars() + "-" + fourChars() + fourChars() + fourChars());
        };
    })();
    
    // usage example:
    var tempId = PseudoGuid.GetNew();
    someDomElement.id = tempId;
    

    That works for me, I just tested it in a Greasemonkey script myself.


    UPDATE: Closures are the way to go - personally, as a hard-core JavaScript developer, I don't know how you didn't think of those immediately. :)

    myDomElement; // some DOM element we want later reference to
    
    someOtherDomElement.addEventListener("click", function(e) {
       // because of the closure, here we have a reference to myDomElement
       doSomething(myDomElement);
    }, false);
    

    Now, myDomElement is one of the elements you apparently, from your description, already have around (since you were thinking of adding an ID to it, or whatever).

    Maybe if you post an example of what you are trying to do, it would be easier to help you, assuming this doesn't.

    0 讨论(0)
  • 2020-12-14 01:13

    UPDATE: Closures are indeed the answer. So after fiddling with it some more, I figured out why closures were initially problematic and how to fix it. The tricky thing with a closure is you have to be careful when iterating through the elements not to end up with all of your closures referencing the same element. For example, this doesn't work:

    for (var i = 0; i < elements.length; i++) {
        var element = elements[i];
        var button = document.createElement("button");
        button.addEventListener("click", function(ev) {
            // do something with element here
        }, false)
    }
    

    But this does:

    var buildListener = function(element) {
        return function(ev) {
            // do something with event here
        };
    };
    
    for (var i = 0; i < elements.length; i++) {
        var element = elements[i];
        var button = document.createElement("button");
        button.addEventListener("click", buildListener(element), false)
    }
    

    Anyway, I decided not to select one answer because the question had two answers: 1) No, there are no internal IDs you can use; 2) you should use closures for this. So I simply upvoted the first people to say whether there were internal IDs or who recommended generating IDs, plus anyone who mentioned closures. Thanks for the help!

    0 讨论(0)
  • 2020-12-14 01:15

    Closure is the way to go. This way you'll have exact reference to the element that even will survive some shuffling of DOM.

    Example for those who don't know closures:

    var saved_element = findThatDOMNode();
    
    document.body.onclick = function() 
    {
       alert(saved_element); // it's still there!
    }
    

    If you had to store it in a cookie, then I recommend computing XPath for it (e.g. walk up the DOM counting previous siblings until you find element with an ID and you'll end up with something like [@id=foo]/div[4]/p[2]/a).

    XPointer is W3C's solution to that problem.

    0 讨论(0)
  • 2020-12-14 01:16

    OK, there is no ID associated to DOM element automatically. DOM has a hierarchycal structure of elements which is the main information. From this perspective, you can associate data to DOM elements with jQuery or jQLite. It can solve some issues when you have to bind custom data to elements.

    0 讨论(0)
  • 2020-12-14 01:20

    I 'think' I've just solved a problem similar to this. However, I'm using jQuery in a browser DOM environment.

    var objA = $("selector to some dom element"); var objB = $("selector to some other dom element");

    if( objA[0] === objB[0]) { //GREAT! the two objects point to exactly the same dom node }

    0 讨论(0)
  • 2020-12-14 01:23

    The answer is no, there isn't an internal id you can access. Opera and IE (maybe Safari?) support .sourceIndex (which changes if DOM does) but Firefox has nothing of this sort.

    You can simulate source-index by generating Xpath to a given node or finding the index of the node from document.getElementsByTagName('*') which will always return elements in source order.

    All of this requires a completely static file of course. Changes to DOM will break the lookup.

    What I don't understand is how you can loose references to nodes but not to (theoretical) internal id's? Either closures and assignments work or they don't. Or am I missing something?

    0 讨论(0)
提交回复
热议问题