今天知道了在js中怎麼得到的value值

lyl16發表於2014-06-16
我用的是:先在頁面中設定 
<a style="text-decoration: none" onclick="delButton(${id});">
 <input type="button" class="deleteButton" id="delButton" name="search" value="刪    除"  />
</a>
其實就是設定一個onclick事件,然後用${id},動態得到當前的id

然後在js中用:

//刪除選中的房屋操作
	function delButton(id){
		var flag = confirm("確定要刪除該資訊嗎?")
	 	if(flag==true){
			window.location.href="del.action?houseId="+id;
		 	}else{
					return false;
			 	}
		}


相關文章