-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 に答える
0

JavaScript 関数の形式が間違っています。括弧で囲んでください

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

また、2 つの異なるバージョンの 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 に答える