enabled Property--------------------------------------------------------------------------------Sets or retrieves whether the filter is currently enabled. SyntaxHTML { filter:filterName (ENABLED = bEnabled ...) } 
Scripting object.filters.filterName.enabled [ = bEnabled ] Possible ValuesbEnabled Boolean that specifies one of the following values: true Filter is enabled. 
false Filter is disabled. 
 The property is read/write with a default value of true.ExampleThis example uses the enabled property to change the orientation of an image when the user moves the mouse pointer across one of the image's borders.<IMG ID="image1" SRC="sample.jpg" 
   onmouseover="image1.filters.flipv.enabled = false;"
   onmouseout ="image1.filters.flipv.enabled = true;"
   STYLE="filter:blur(STRENGTH=50) flipv()">

解决方案 »

  1.   

    zhfkiller(杀手),您的代码对我来说有点深奥,您能不能加上注释,或是换种写法写的清楚点?
      

  2.   

    简单的说就是先把这个按钮设成disabled,然后通过那个事件把它enabled
      

  3.   

    我要实现的确实是通过单击另外一个按钮让这个按钮可用,可是如何让它能够enabled,还望多指点
    如果能贴出代码和注释最好
      

  4.   

    function fun(){
    var temp= document.getElementsByName("yesOrNo");
    for(var i=0;i<2;i++){
      if(temp[0].checked)
        document.myForm.next.disabled=false//myForm 是表单名,next是表单的一个元素;
      else if(temp[1].checked)
        document.myForm.next.disabled=true;//myForm 是表单名,back是表单的一个元素;
      }
    }
    接分