Analytics

2014年8月7日 星期四

[jQuery]如何 html呼叫jQuery Function (How html call jQuery Function)


問題
如何 html呼叫jQuery Function



解決方法
(function ($) {
         function form_validation(){
             console.log('abc');
             return false;
          }
      $(function(){
            $("#form_save").click( form_validation );
      })
})(jQuery)

<input type="submit" id="form_save" value="Save">

沒有留言:

熱門文章