導航:首頁 > 編程語言 > js獲取控制項的值

js獲取控制項的值

發布時間:2023-12-18 18:56:46

js中獲取某控制項的屬性的幾種方法

大致是HtmlControl被伺服器發送到頁面ID不變,比如<div id="a" runat="sever"></div>
WebControl 被伺服器發送到頁面,如果在其他循環控制項里,或者在用戶控制項中,ID會變,
用document.getElementById("<%=Button1.ClientID%>")
這個你多看看頁面源代碼,就知道什麼時候會變。什麼時候不會變

類似取Text需要這樣寫:document.getElementById("<%=Button1.ClientID%>").value
而不是直觀意義上document.getElementById("<%=Button1.ClientID%>").text
這個是javascript語言,就這個語法,這個屬性,就用value取值,在js中就是這樣,沒什麼說的
如果是在.net後台,才用Button1.Text

② jquery-1.10.2.min.js怎麼獲取easyui的時間控制項的值

jquery-1.10.2.min.js怎麼獲取easyui的時間控制項的值
基本用法:
1) 加入日期選擇框
$("#dd").datebox({"required":true});

2) javascript獲取日期選擇框的值
$("#dd").datebox("getValue"); 或者$("input[name='dd']").val();

那麼我們可以給它添加一個事件監聽,在datebox onSelect 日期選中後,自動為input id="dd" type="text"賦值,然後我們就可以使用
$("#dd").val()獲取選中的日期值了。

<script type="text/javascript">
$(document).ready(function(){
$("#dd").datebox({
required:true,
onSelect: function(date){
$("#dd").val(date);
}
});
});
</script>

3) javascript設置datebox的值
$("#dd").datebox("setValue", "2012-01-01");
例:添加編輯頁面
@Html.Hidden("hBirthDate", Model.BirthDate.ToString("yyyy-MM-dd"))

$(document).ready(function () {

$("#BirthDate").datebox({
required: false,
formatter: function (date) { return date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate(); },
parser: function (date) { return new Date(Date.parse(date.replace(/-/g, "/"))); },
onSelect: function (date) {
$("#BirthDate").val(date);
}
});
//處理日期格式問題
if ($("#hBirthDate").val() != "" && $("#hBirthDate").val() != "0001-01-01") {
$("#BirthDate").datebox("setValue", $("#hBirthDate").val());
} else {
$("#BirthDate").datebox("setValue", ((new Date()).getFullYear() - 25) + "-01-01");
}
});

③ 怎麼用js獲取table中的td里的控制項值

空間加id屬性例如
<input type="text" name="test" id="test" value="hello" />
<input type="button" value="獲取" onclick="getVal()" />
//Script代碼
function getVal(){
var text = document.getElementById("test").value;//根據控制項id獲取
alert(text);
}

④ 用js怎樣獲得下拉框的值

1、首先我們打來開軟體進入代碼編輯按照自圖示代碼先創建一個下拉框。

⑤ js中我定義了一個變數,獲取頁面控制項的值,然後在js中某個方法中作為參數提交,怎樣實現

//方法
functiontest(param){
//你要處理的邏輯
}
//獲取頁面控制項內的值
varelemVal=document.getElementById("控制項ID").value;
//調用test方法,並將頁面控制項的值作為參數傳給容test
test(elemVal);

閱讀全文

與js獲取控制項的值相關的資料

熱點內容
ubuntu重置用戶密碼 瀏覽:14
c4d變形動畫教程 瀏覽:507
fpga調試需要哪個文件 瀏覽:507
幀中繼網路的介面 瀏覽:223
怎麼做socket編程 瀏覽:57
ipad用什麼軟體打開dmg文件 瀏覽:476
建行信用卡中心微信 瀏覽:126
linuxstdin用法 瀏覽:900
如何在排列圖把數據顯示出來 瀏覽:407
es文件瀏覽器搜不到電腦 瀏覽:187
進去不了桌面怎麼備份桌面文件 瀏覽:20
linuxc系統編程有那些要學的 瀏覽:777
旅遊app怎麼變現 瀏覽:237
rekordbox放在哪個文件夾 瀏覽:863
電子商務網站需要學習什麼 瀏覽:928
linuxshell創建文件 瀏覽:499
蘋果6手機4g轉3g了 瀏覽:623
qq郵箱iphone22 瀏覽:920
網站在線下訂單源碼 瀏覽:450
青鳥消防編程如何停止 瀏覽:742

友情鏈接