简体   繁体   English

未单击按钮时显示工具提示

[英]Show tooltip when the button isn't clicked

I want to show a tooltip when the user didn't click the specific button while submitting a form. 当用户在提交表单时未单击特定按钮时,我想显示一个工具提示。 I prevent the form from submitting and I want to show just the tooltip to say "you should click first the button". 我阻止了表单的提交,我只想显示工具提示,说“您应该先单击按钮”。 Thank's in advance. 提前致谢。

<form id="signUpForm">
    <button type="button" id="agree" class="btn btn-default" data-color="info" tabindex="7">I Agree</button>
    <input type="hidden" id="hidden" value="0">
    <input type="submit" id="btn-submit" value="submit">
</form>

<script>
    $('#signUpForm').submit(function(e) {
        if ($('#hidden').val() == '0') {
            e.preventDefault();
            //show the tooltip that "you first click the agree button" and fadeOut(1000)
        }
    });
</script>

try this, make button type as button instead of submit: 试试这个,将按钮类型设为按钮而不是提交:

<form id="signUpForm" >
 <button type="button" id="agree" class="btn btn-default" data-color="info" tabindex="7" >I Agree</button>
 <input type="hidden" id="hidden" value="0">
 <input type="button" id="btn-submit" value="submit">
</form>

 <script>
 $('#btn-submit').click(function(e){
   if($('#hidden').val()=='0'){

   }
   else {
      $('#signUpForm').submit();
   }
 });
 </script>

Check below script it will helpful to you for display the tooltip. 检查以下脚本,它将有助于您显示工具提示。

<script>
    $(".tooltip").hide();
    $('#signUpForm').submit(function (e) {
        if ($('#hidden').val() == '0') {
            e.preventDefault();
            //show the tooltip that "you first click the agree button" and    fadeOut(1000)
            $("#signUpForm").find(".tooltip").stop().fadeIn();
            setTimeout(function () {
                $("#signUpForm").find(".tooltip").stop().fadeOut();
            }, 1000);
        }
    });
</script>

HTML Part HTML部分

<form id="signUpForm">
    <button type="button" id="agree" class="btn btn-default" data-color="info" tabindex="7">I Agree</button>
    <input type="hidden" id="hidden" value="0">
    <input type="submit" id="btn-submit" value="submit">
    <div class="tooltip">
        you first click the agree button
    </div>
</form>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM