我試圖從Browser-Update.org項目實現腳本,該項目檢查瀏覽器版本並提示用戶在使用舊版本時進行更新。 It can be found here.Browser-Update.org定製
在他們customization documentation,它們允許你顯示的信息欄時執行的javascript:
onshow: function(infos){}, // callback function after the bar has appeared
我想不通的地方在他們的腳本插入此。我想運行下面的JavaScript時OnShow中被觸發:
document.getElementById('Submit').disabled = true;
以下是我已經嘗試過失敗:
<script>
var $buoop = {c:2};
function $buo_f(){
var e = document.createElement("script");
e.src = "//browser-update.org/update.min.js";
document.body.appendChild(e);
};
try {document.addEventListener("DOMContentLoaded", $buo_f,false)}
catch(e){window.attachEvent("onload", $buo_f)}
onshow: function(infos){
document.getElementById('Submit').disabled = true;
};
</script>
我是一個真正的JavaScript的新手,我失去了對這個。謝謝。 -Brian
您是否嘗試將函數中的代碼? – j08691