Posted in Javascript onMarch 26, 2014
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <input type="text" id="msg"> <a href="#" id="result">提交</a> <div id="show"></div> <script src="jquery1.11.js"></script> <script> $(function(){ var flag = true; $("#result").on('click',function(){ if(flag){ flag = false; }else{ return; } $("#show").html('<p>'+$("#msg").val()+'</p>'); }); }) </script> </body> </html>
so easy!
JS阻止用户多次提交示例代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@