想要使用 Jquery 或 javascript 调用 rel 属性而不点击

发布于 2024-12-11 16:28:31 字数 911 浏览 0 评论 0原文

这是按钮代码
<输入 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。

有什么建议吗?

This is a button code
< input id="error_" type="button" class="tabButton" value="test" rel="#ErrorMessage" />

and this is a div tag code

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

and this is a css code for overlay

.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;

}

When click on the button div tag is call and overlay appears and it works fine but according to my new requirement need to call with out any button click using jquery or javaScript.

Any suggestion?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

魔法唧唧 2024-12-18 16:28:31

在 JavaScript 中尝试以下代码:

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

Try following code in javascript:

  $(document).ready(function() {
         //Your code for overlay
    })
人│生佛魔见 2024-12-18 16:28:31

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

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

you can easily do that using jQuery

    $(document).ready(function() {
        $("#ErrorMessage").show();
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文