0

我想在下面的警报消息中显示 texbox 中的内容。

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

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

非常感谢。

4

3 回答 3

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

这是如何做到的:

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

 <input id="cbotherstext" type="text" /></td>
于 2013-10-31T08:41:38.050 回答
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 回答