0

以下是我想在用户单击提交时调用的 javascipt 函数,请告诉我如何进行调用????

    <script type='text/javascript'>
    $(document).ready(function(){

  function(e){

                //stop the form from being submitted
                e.preventDefault();
}
    </script>


<input class="bttonn1" type='submit' onClick="" id='send_message' value='Send The Message'>
4

3 回答 3

2

在元素上使用submit事件,而不是在提交按钮上。formclick

(并且您的代码不完整,您缺少}处理程序函数的关闭);,对click[您将更改] 的调用的关闭}ready处理程序的关闭以及对.);的调用的关闭ready。)

于 2012-04-23T15:11:10.503 回答
0

如果它只是一个按钮,那么您可以使用 onclick 方法中的函数:

<input class="button1" onClick="sumbitForm()">
<script type="text/javascript">
function submitForm() {
//Your code here
//If you need to get anything from within a form try using document.getElementById(string)
}

于 2012-04-23T15:28:32.920 回答
0

就像这样:http: //jsfiddle.net/joeflateau/9c2Fm/

听听submit表格和preventDefault那个

于 2012-04-23T15:16:49.190 回答