我在獲取輸入字段的值時遇到問題。jQuery值幫助
function Send(id){
var send_to=$("#id").val();
$.post("send.php", { id:id }, function(data) { if(data==="OK"){ } else { } });
}
下面是一個頁面的例子。
<input type=text id=4543><button onclick=Send(4543);>SEND</button>
<input type=text id=8643><button onclick=Send(8643);>SEND</button>
<input type=text id=8645><button onclick=Send(8645);>SEND</button>
<input type=text id=2421><button onclick=Send(2421);>SEND</button>
我需要得到輸入控件的值,它的id傳遞給send方法。
謝謝! :)
$( 「#ID」)VAL()。這總是不變的字符串///這是錯誤的 – kobe 2010-12-21 04:39:00
使用Send(this.id); – 2010-12-21 06:08:00