-3
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){  - this is saying to wait until document is ready before          calling function

  $("button").click(function(){ - this is saying when "button" is click to perform function.

    alert("Value: " + $("#test").val()); - this is saying to show value in pop up box.
  });
});
</script>
</head>

<body>
<p>Name: <input type="text" id="test" value="Mickey Mouse"></p> - this is input for the value

<button>Show Value</button> - this is the button. 
</body>
</html>

ポップアップ ボックスではなく、html 本文に値を表示する方法を知りたいと思っていました。$(selector).document.write 関数を使用できると思っていましたが、機能していないようです。任意の支援をいただければ幸いです。前もって感謝します。

4

1 に答える 1

2

append()を使用して body に値を割り当てることができます

$('body').append( $("#test").val());

またはIDセレクターを使用して特定の要素に割り当てます

$('#divId').append( $("#test").val());

またはクラスセレクターを使用して特定の要素に割り当てます

$('.cssClassName').append( $("#test").val());

または document.write を使用して表示します

document.write($("#test").val()); 
于 2013-04-04T05:19:48.810 に答える