jquery点击按钮,提示信息

jquery点击button按钮,给固定的地方提示信息,比如显示a地方未完成,像验证信息一样

$('buttonId').click(function(){
$('divId').text('helloworld');
})

 放一个div
$("#按钮id").click(function() { $("#div").text("提示信息"); })

$(function(){
$("#id").click(function(){

    })

})

<!DOCTYPE html>





<br> $(function(){<br> $(&quot;#username&quot;).click(function(){<br> alert(&quot;a地址未完成&quot;);<br> })<br> });<br>
</head>
<body>

    <input type="button" value="提交" id="username"/>

</body>

 //拷贝到html中,双击打开看效果
 <script type="text/javascript" src="http://www.srcfans.com/js/jquery-1.9.1.min.js"></script>
 <meta charset="utf-8"/>
 <style>
    #msg{
        width:400px;
        height:40px;
        font-size:20px;
        text-align:center;
        font-family:'隶书';
        border-radius:5px;
        background:#add2f9;
        line-height:30px;
    }
 </style>
 <script>
    $(function(){
        $("#btn").click(function(){
            $("#msg").remove();
            $('<div id="msg">显示a地方未完成!</div>').appendTo('body');//添加消息框
            $("#msg").css('margin-left',$(window).width()/2)
            .css('margin-top',$(window).height()/2);//提示框显示位置
            setTimeout('$("#msg").remove();',1000);//一秒后提示消失
        })
    })
 </script>
 <body>
    <button id="btn">点击</button>
 </body>