Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I would like to know how to save the output of this into a "var a="

navigator.plugins.refresh(false);

var numPlugins = navigator.plugins.length;


for (var i = 0; i < numPlugins; i++){
  var plugin = navigator.plugins[i];

  if (plugin) {
    document.write(plugin.name + plugin.description + plugin.filename)
  }
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
386 views
Welcome To Ask or Share your Answers For Others

1 Answer

Declare a outside of the loop and define it as an empty string, then append results to it as you go:

navigator.plugins.refresh(false);

var numPlugins = navigator.plugins.length;
var a = '';

for (var i = 0; i < numPlugins; i++){
  var plugin = navigator.plugins[i];

  if (plugin) {
    a += plugin.name + plugin.description + plugin.filename;
  }
}

You may want to use an array of strings though, since you could have many plugins:

navigator.plugins.refresh(false);

var numPlugins = navigator.plugins.length;
var a = [];

for (var i = 0; i < numPlugins; i++){
  var plugin = navigator.plugins[i];

  if (plugin) {
    a.push(plugin.name + plugin.description + plugin.filename);
  }
}

EDIT If you need to hash a into something:

var hash = yourMd5Function(a);

Or for the second example:

var b = a.join(','); // "plugin1,plugin2,..." for example
var hash = yourMd5Function(b);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...