-2
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>

<script>
function formSubmit()
$('#newhtml').html('hello world');
</script>

</head>
<body>
First name: <input type="text" id="fname" name="fname"><br>
<input type="button" onclick="formSubmit()" value="Search Data">
<div id="newhtml"></div>
</body>
</html>

使用上面的代码,我尝试单击在单击时执行 formSubmit() 函数的按钮,并且我的 div newhtml 不会更改为 hello world。

上面的代码有什么问题吗..

谢谢!

4

4 回答 4

1

在函数中添加括号

function formSubmit() {
    $('#newhtml').html('hello world');
}
于 2013-10-03T07:20:07.777 回答
1

尝试这个

 <script>
    $(document).ready(function(){

    $("#input").click(function(){
    $('#newhtml').html('hello world');

    })


    });

    </script>

HTML 代码

<body>
First name: <input type="text" id="fname" name="fname"><br>
<input type="button" id="input" value="Search Data">
<div id="newhtml"></div>
</body>
于 2013-10-03T07:23:56.473 回答
0

您的 JavaScript 函数格式错误,请将它们括在括号中

function formSubmit(){
    $('#newhtml').html('hello world');
}

此外,您不必包含两个不同版本的 jQuery。

于 2013-10-03T07:19:55.360 回答
0

 <head>

    <script>

      function formSubmit()
      {

          document.getElementById("newhtml").innerHTML="hello world";
      }
    </script>

</head>
<body>`enter code here`
    First name: <input type="text" id="fname" name="fname"><br>
   <input type="button" onclick="formSubmit()" value="Search Data">
  <div id="newhtml"></div>

于 2013-10-03T07:30:05.407 回答