jQuery 在 IE7 中无法正常工作,而在 IE8 及更高版本、chrome 和 Fire Fox 中可以正常工作。我花时间但没有得到任何线索,所以我在这里,需要帮助。
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 不支持的
提前致谢。