jQuery在IE7中不能正常工作,而它在IE8和IE中工作正常。以上,铬和火狐。我花时间但没有得到任何线索所以我在这里,需要帮助。
JQuery是:
$("#<%= Txt_Destination.ClientID %>").val(window.sessionStorage.getItem("Destination"));
我使用Session来获取上一个表单中文本框中的值。
document.getElementById('<%=Txt_Destination.ClientID%>').readOnly = true; //made it Read Only.
var arr = new Array();
arr = Route.split(',');
$("#DDL_Route").html("");
$("#DDL_Route").append($("<option></option>").val(0).html("Select"));
for (var i = 0; i < arr.length; i++) {
var item = arr[i];
$("#DDL_Route").append($("<option></option>").val(i + 1).html(item));
}
它用于从Route变量下拉值,该变量具有多个以逗号分隔的值
$('#DDL_Route').change(function () {
var selectedvalue = $('#DDL_Route option:selected').attr('text');
if (selectedvalue == 'Select') {
alert('Please select value from dropdown');
$('#<%= HiddenField1.ClientID %>').val(" ");
return false;
} Validation.
$("#<%= Btn_Save.ClientID %>").click(function () {
var numericReg = /^[1-9][0-9]{9}$/; // check only digit
if (!numericReg.test($('#<%= Txt_Number.ClientID %>').val())) {
// if not digit, return false
alert("Please enter proepr contact no in Text Box");
return false;
}
else if ($('#<%= Txt_Number.ClientID %>').val() == "") { // if it is blank, return false
alert("Please enter 10 digit contact no in Text Box");
return false;
}
//if value is Select from drop down, return false else if ($('#<%= HiddenField1.ClientID %>').val() == " " || $('#DDL_Route option:selected').attr('text') == "Select") {
alert("Please select value from dropdown");
return false;
}
else { // all conditions satisfied, return true
return true;
}
}); Submit action with validation.
你能否告诉我这里的错误是什么,IE7不是 支撑
提前致谢。
答案 0 :(得分:2)
window.sessionStorage