我可以在 javascript 函数中重用函数中使用的变量吗?

string empCode = ds.Tables[0].Rows[i]["EMP_CODE"].ToString();

        string empName = ds.Tables[0].Rows[i]["EMP_NAME"].ToString();

        string gradeCode = ds.Tables[0].Rows[i]["GRADE_CODE"].ToString();


        tr = new TableRow();


        td = new TableCell();

        td.Attributes.Add("onClick", "javascript: " +

            "if(confirm(empName)==true){self.close();}" +  //this Line

            "else{return;}");

我想在评论部分重用 empName 。有没有办法重用它?


智慧大石
浏览 103回答 1
1回答

MMMHUHU

请尝试如下所示,td.Attributes.Add("onClick", "javascript: " +        "if(confirm(" + empName + ") === true){self.close();}" +  //this Line        "else{return;}");或尝试td.Attributes.Add("onClick", "javascript: " +        "var empName=" + empName + "; if(confirm(empName) === true){self.close();}" +  //this Line        "else{return;}");
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript