我想在下面的警报消息中显示 texbox 中的内容。
alert("You have selected: " + cbotherstext);
<input id="cbotherstext" type="text" /></td>
非常感谢。
我想在下面的警报消息中显示 texbox 中的内容。
alert("You have selected: " + cbotherstext);
<input id="cbotherstext" type="text" /></td>
非常感谢。
用 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
<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>
这是如何做到的:
alert("You have selected: " + document.getElementById("cbotherstext").value);
<input id="cbotherstext" type="text" /></td>
试试这个
HTML
<input id="cbotherstext" type="text" />
脚本
$("#cbotherstext").keyup(function(){
alert("You have selected: " + $("#cbotherstext").val());
});
小提琴