可能有人幫助請,卻困以下錯誤:'document.Form1.imgLoading' 爲空或不是對象
'document.Form1.imgLoading' is null or not an object control.js, line 55 character 2
那就是:
55號線:document.Form1.imgLoading.style.width=370
來源:
function setLoading(){
var strPath = "../images/"
var strFName = "searchingText.gif"
var strSearchPath = ""
//15/2if (!document.Form1.TextBoxLangID.value == "") { //SO LANG USED
// strSearchPath = strPath + document.Form1.TextBoxLangID.value + "/brand/" + strFName
//}
//else{
// strSearchPath = strPath + "brand/" + strFName
//15/2}
//document.Form1.imgSearchingText.src = strSearchPath
document.Form1.imgLoading.style.width=370
document.Form1.imgLoading.style.height=328
document.Form1.imgLoading.style.left = 327
document.Form1.imgLoading.style.top = 220
document.Form1.imgLoading.style.zIndex=2000'
此處在index.aspx中的javascript – SimonG88
這是說你沒有名稱爲「imgLoading」的元素。 – epascarello
爲什麼在虛擬機上運行它時,這隻會是一個問題,它也會在沒有錯誤的其他虛擬機上運行。這是一個IIS問題? – SimonG88