0

下のアラートメッセージにテキストボックスの内容を表示したいと思います。

 alert("You have selected: " + cbotherstext);

 <input id="cbotherstext" type="text" /></td>

本当にありがとう。

4

3 に答える 3

0

これを行う方法は次のとおりです。

 alert("You have selected: " + document.getElementById("cbotherstext").value);

 <input id="cbotherstext" type="text" /></td>
于 2013-10-31T08:41:38.050 に答える
0

jquery でこれを試してください:

 alert("You have selected: " + $("#cbotherstext").val());

 <input id="cbotherstext" type="text" />

たとえば、関数を呼び出すものも必要です(Jqueryを使用)

<input id="cbotherstext" type="text" />
<a id="example">Example</a>
<script>
$("#example").click(function(){
    alert("You have selected: " + $("#cbotherstext").val());
});
</script>

JQuery を使用した例

Jquery なし

   <input type="text" id="cbotherstext" >
   <a onclick="alert_val()"> click me</a>
   <script> function alert_val(){
        alert("You have selected: " + document.getElementById('cbotherstext').value);
   }</script>

JQuery なし

于 2013-10-31T08:39:15.597 に答える
0

これを試して

HTML

 <input id="cbotherstext" type="text" />

脚本

$("#cbotherstext").keyup(function(){
    alert("You have selected: " + $("#cbotherstext").val());
});

フィドル

http://jsfiddle.net/EQB68/

于 2013-10-31T08:43:58.033 に答える