问题描述
hb.Attributes.Add("onclick","window.open('guanggaoshangchuan.aspx?wenben=document.getElementById('"+tupian.ID+"').name','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')");帮错`:缺少')'
解决方案
解决方案二:
hb.Attributes.Add("onclick","window.open('guanggaoshangchuan.aspx?wenben=document.getElementById('"+tupian.ID+"').name','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')");
解决方案三:
Window.open('用的是单引用,里面还要使用单引号时,请转义一下'
解决方案四:
hb.Attributes.Add("onclick","window.open('guanggaoshangchuan.aspx?wenben=document.getElementById(\'"+tupian.ID+"\').name','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')");
是加两个\,开始少打了一个
时间: 2024-10-24 01:11:53