我試圖在javascript中爲元素(id ctl30_txtTextBox)設置一個值。無法將值設置爲元素
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "IndexMask.aspx/AttachBarcodeFile",
dataType: "json",
data: params,
success: function() {
$("#<%= DummyPostbackButton.ClientID %>").click();
var someOtherName = "abc";
var element = document.getElementById("ctl30_txtTextBox");
element.Value = someOtherName;
alert(element.value.toString());
},
error: function(request, status, error) {
alert("Error attaching barcode file.");
}
});
即時獲取元素,但值從未設置。 如果我在頁面上設置了一個值,警報將顯示正確的值。
我在做什麼錯了?
您是否找到解決方案? – MarcusVinicius 2013-02-14 12:14:07