在客户端如何显示单引号
--------------------编程问答-------------------- 使用 @进行转意 或者使用 \' 进行输出 --------------------编程问答-------------------- 试着把这句: HttpUtility.HtmlDecode取消..看看. --------------------编程问答-------------------- textBox.Attributes["onmouseover"] = "'$(this).datepicker("+s+")'"; }
or
textBox.Attributes["onmouseover"] = "\"$(this).datepicker("+s+")\""; } --------------------编程问答-------------------- 或者
textBox.Attributes.Add("onmouseover","$(this).datepicker("+s+")"); --------------------编程问答--------------------
++ --------------------编程问答--------------------
正解
补充:.NET技术 , ASP.NET