使用javascript无法在chrome中启用按钮

时间:2016-04-28 11:44:05

标签: javascript google-chrome magento-1.9

我正在使用此代码:

   foreach($resArray as $col){
   $items = explode(',', $col);

   foreach ($items as $item) {
       if (file_exists($filePath . trim($item))){
            $valid_files[] = $filePath . trim($item);
       }       
   } 

此代码在firefox和IE中运行良好但在chrome中不起作用,甚至在页面加载时显示警告,但是当我点击按钮时它再次禁用了在页面加载时启用的按钮。

任何建议都必须表示赞赏..

提前谢谢

2 个答案:

答案 0 :(得分:0)

//而不是用于chrom

document.getElementById('review_button').disabled = false;

答案 1 :(得分:0)

您链接的代码在chrome上运行正常:

https://jsfiddle.net/fm86t8ws/

<button id="review_button" disabled="true">
aaa
</button>

<script type="text/javascript">
function load(){
var abc = document.getElementById('review_button');
abc.disabled = false;
}
window.onload = load;
</script>

这段代码很可能不是问题。