如何讓1處的值傳到2處這裡??
需要用ajax提交你的index到服務器,服務器端無法直接獲取客戶端js的變量值
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1.min.js"></script>
<script type="text/javascript">
function deleteUser(index, name) {
$.ajax({
url: 'xxxx.jsp', data: 'id=' + index, complete: function (xhr) {
alert('請求完畢,服務器返回內容:'+xhr.responseText)
}
})
}
</script>
xxxx.jsp
String id=request.getParameter("id");
//.....