Print / display a JavaScript variable's name instead of it's value

前端 未结 3 1158
一整个雨季
一整个雨季 2020-12-01 18:53

Is it possible to print / display a JavaScript variable\'s name? For example:

var foo=5;
var bar=6;
var foobar=foo+bar;

document.write(foo+ \"
\");
3条回答
  •  悲哀的现实
    2020-12-01 19:13

    You can put the variables in an object then easily print them this way: http://jsfiddle.net/5MVde/7/

    See fiddle for everything, this is the JavaScript...

    var x = {
        foo: 5,
        bar: 6,
        foobar: function (){
            var that=this;
            return that.foo+that.bar
        }
    };
    
    var myDiv = document.getElementById("results");
    
    myDiv.innerHTML='Variable Names...';
    for(var variable in x)
    {
        //alert(variable);
        myDiv.innerHTML+='
    '+variable; } myDiv.innerHTML+='

    And their values...'; myDiv.innerHTML+='
    '+x.foo+'
    '+x.bar+'
    '+x.foobar();

    The JavaScript for...in statement loops through the properties of an object.

    Another variation (thanks @elclanrs) if you don't want foobar to be a function: http://jsfiddle.net/fQ5hE/2/

提交回复
热议问题