网络编程
位置:首页>> 网络编程>> Asp编程>> 如何处理包含JavaScript语句时的间隔符?

如何处理包含JavaScript语句时的间隔符?

 来源:asp之家 发布时间:2009-11-14 20:39:00 

标签:间隔符,JavaScript,asp

试一试这个办法:

struserlist = struserlist & "<a href='#' onclick=\" & chr(34) &_
"sendmsg('" & usernick & "');return false;\" & chr(34) &_
" class='l_line'><span class=lineinfo>" & usernick & "</span></a>"
' StrUserList字串被赋值给另一个页面上的一个表单中隐藏文本单元
if (top.LineInfo.document.forms.length == 1)
{
 top.LineInfo.document.forms[0].userlist.value = "<% =GetAppUserList() %>";
 if (top.MainFrame.mylayer != null)
 top.MainFrame.ShowLineInfo();
}

在主页帧中显示:

function ShowLineInfo()
{
 var userlist;
 if (top.LineInfo.document.forms.length == 1)
 userlist = top.LineInfo.document.forms[0].userlist.value
 else
 userlist = "<span class='lineinfo'>欢迎光临asp之家!</span>";
 userlist = userlist + " <a href='<% =path %>/listuser.asp'>" +
    "<span class='lineinfo'>显示列表</span></a><a href='#' onclick='top.RefFrame.location=" +
  ""<% =path %>/refresh.asp?stat=manu"'><span class='lineinfo'> 刷新</span></a>";
if (mylayer != null)
{
  mylayer.innerHTML = "";
  mylayer.filters[0].Apply();
  mylayer.innerHTML = userlist
  mylayer.filters[0].Play();
}
}


 

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com