想要使用Jquery或javascript调用rel属性

时间:2011-10-24 06:17:26

标签: jquery asp.net css jquery-plugins

这是按钮代码
 < input id =“error_”type =“button”class =“tabButton”value =“test”rel =“#ErrorMessage”/>

这是一个div标签代码

<div id="ErrorMessage" style="border:thin solid black;" class="apple_overlayErrorMessage">
      <div class="contentWrap"></div>
  </div>

这是覆盖

的css代码

.apple_overlayErrorMessage {

/* initially overlay is hidden */
display:none;
/*background-color:transparent;
/* growing background image */
background-image:url(images/ErrorBackground.png);

/* 
    width after the growing animation finishes
    height is automatically calculated
*/
width:100px;    


/* some padding to layout nested elements nicely  */
/*padding: 0px 600px -600px;

/* a little styling */  
font-size:12px;

}

当点击按钮div标签是调用并且覆盖显示并且它工作正常但是根据我的新要求需要使用jquery或javaScript点击任何按钮单击。

有什么建议吗?

2 个答案:

答案 0 :(得分:0)

在javascript中尝试以下代码:

  $(document).ready(function() {
         //Your code for overlay
    })

答案 1 :(得分:0)

你可以使用jQuery轻松做到这一点

    $(document).ready(function() {
        $("#ErrorMessage").show();
    });