JavaScript DHTML/Javascript Objects/plugin — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 10:00, 26 мая 2010
Plugin: description, filename, name
<html>
<body>
<button onclick="alert(navigator.plugins[0].description);">mimetype</button>
<button onclick="alert(navigator. plugins[0].filename);">suffixes</button>
<button onclick="alert(navigator.plugins[0].name);">type</button>
</body>
</html>
"refresh()" Example
<head>
<script>
function function1() {
window.location.href = "http://www.macromedia.ru/shockwave/download/"
navigator.plugins.refresh();
}
</script>
</head>
<body><button onclick="function1();">Add new plug-in</button>
</body>
</html>