我在我的代碼中有以下內容,它在IE 7和8中工作正常,但它不再適用於IE 9(除非用戶以兼容模式運行...)IE9 Javascript未定義變量
<asp:Label ID="invNumLink" runat="server" Font-Underline="true" ForeColor="Blue" Text='<%# Eval("Order_No") %>' createDate='<%# string.Format(Eval("create_date").ToString(),"MM/dd/yyyy") %>'
operatorNo='<%# Eval("operator_no") %>' orderNo='<%# Eval("Order_No") %>' loc='<%# Eval("Location") %>' table='<%# Eval("table_no") %>' recall='<%# Eval("recall_code") %>'
orderID='<%# Eval("ID") %>' acrID='<%# Eval("ACR_ID") %>'
onclick="goToDetail(this.orderNo,this.createDate, this.operatorNo, this.loc, this.table, this.recall, this.orderID, this.acrID);" style="cursor:pointer" ></asp:Label>
<script type="text/javascript">
function goToDetail(orderNo, createDate, operatorNo, loc, table, recall, orderID, acrID) {
var URL = 'OrderDetailView.aspx?orderNo=' + orderNo + '&' + 'createDate=' + createDate + '&' + 'operatorNo=' + operatorNo + '&' + 'loc=' + loc + '&' + 'table=' +
table + '&' + 'recall=' + recall + '&' + 'id=' + orderID + '&' + 'acrID=' + acrID;
day = new Date();
id = day.getTime();
window.open(URL, id, 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=1100,height=700,left = 62,top = 15')
}
</script>
在IE9中,所有發送到「goToDetail」函數的值都是未定義的。有想法該怎麼解決這個嗎?
編輯
我解決了這個由後面的代碼將調用的javascript:
invNumLink.Attributes.Add("onclick", string.Format("goToDetail('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}'); return false;", item.GetDataKeyValue("Order_No").ToString(),
string.Format(item.GetDataKeyValue("Create_Date").ToString(), "MM/dd/yyyy"),item.GetDataKeyValue("Operator_No").ToString(), item.GetDataKeyValue("Location").ToString(),
item.GetDataKeyValue("table_no").ToString(), item.GetDataKeyValue("recall_code").ToString(), item.GetDataKeyValue("ID").ToString(),item.GetDataKeyValue("ACR_ID").ToStrin
感謝,
亞倫
您是否嘗試過在您的標記之前移動javascript塊? –
這不會幫助 - 問題是IE9不會像舊版瀏覽器那樣將非標準屬性的屬性值移交給用戶。 – Pointy
@ Pointy - 這完全不是很酷.... :( – Aaron