2013-10-31 44 views

回答

0

這是如何做到這一點:

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

<input id="cbotherstext" type="text" /></td> 
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> 

Example with 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> 

Without JQuery

+0

謝謝你的大量工作,但一個親由韋維克vided是我真正想要的。 – user2751035

0

試試這個

HTML

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

腳本

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

小提琴

http://jsfiddle.net/EQB68/