2012-05-29 110 views
0

我有一個簡單的代碼片段,它在單擊按鈕時對文本框的內容進行Base64解碼。爲什麼以下Javascript無法在Firefox 12上運行,但在IE9中運行?

當在IE9中加載時,它的工作原理與預期完全相同,但在Firefox 12中,單擊該按鈕不會執行任何操作。

的代碼是在這裏:

<html> 
<head> 
    <script type="text/javascript"> 

    var keyStr = "ABCDEFGHIJKLMNOP" + 
       "QRSTUVWXYZabcdef" + 
       "ghijklmnopqrstuv" + 
       "wxyz/" + 
       "="; 

    function decode64(input) { 
    var output = ""; 
    var chr1, chr2, chr3 = ""; 
    var enc1, enc2, enc3, enc4 = ""; 
    var i = 0; 

    // remove all characters that are not A-Z, a-z, 0-9, +, /, or = 
    var base64test = /[^A-Za-z0-9\+\/\=]/g; 
    if (base64test.exec(input)) { 
     alert("There were invalid base64 characters in the input text.\n" + 
       "Valid base64 characters are A-Z, a-z, 0-9, '+', '/',and '='\n" + 
       "Expect errors in decoding."); 
    } 
    input = input.replace(/[^A-Za-z0-9\+\/\=]/g, ""); 

    do { 
     enc1 = keyStr.indexOf(input.charAt(i++)); 
     enc2 = keyStr.indexOf(input.charAt(i++)); 
     enc3 = keyStr.indexOf(input.charAt(i++)); 
     enc4 = keyStr.indexOf(input.charAt(i++)); 

     chr1 = (enc1 << 2) | (enc2 >> 4); 
     chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); 
     chr3 = ((enc3 & 3) << 6) | enc4; 

     output = output + String.fromCharCode(chr1); 

     if (enc3 != 64) { 
      output = output + String.fromCharCode(chr2); 
     } 
     if (enc4 != 64) { 
      output = output + String.fromCharCode(chr3); 
     } 

     chr1 = chr2 = chr3 = ""; 
     enc1 = enc2 = enc3 = enc4 = ""; 

    } while (i < input.length); 

    return unescape(output); 
    } 
String.prototype.trim = function() { 
     return this.replace(/^\s+|\s+$/g,""); 
} 
function decodeHtml(){ 
     var contentdiv = document.getElementById("html"); 
     var targetdiv = document.getElementById("target"); 
     targetdiv.innerHTML = decode64(contentdiv.innerHTML.trim()); 
} 
     </script> 
</head> 
     <body> 
       <textarea id="html"> 
       </textarea> 
       <button onClick="decodeHtml()">Decode</button><br><br> 
       <div id="target"></div> 
     </body> 
</html> 
+1

請把你的代碼放在問題中。 – 2012-05-29 21:04:36

+0

有人可以解釋爲什麼他們投票結束這個問題嗎? 我問這個問題尋找解決一個具體問題,我收到了答案。 – merlin2011

+0

因爲StackOverflow帖子意味着對未來的讀者有意義。沒有代碼,如果鏈接中斷,你的問題就沒有意義了。 – 2012-05-29 21:21:23

回答

4

如果不是最後一行:

targetdiv.innerHTML = decode64(contentdiv.innerHTML.trim()); 

是:

targetdiv.innerHTML = decode64(contentdiv.value.trim()); 

jsFiddle example

相關問題