第一次在这里提问,希望大家帮帮忙替小弟解答:我在主页内添加 这行调用JAVASCRIPT :
<script src=/js_html.asp></script>==============================================================
然后js_html.asp 的关键问题编码如下:
==============================================================
Public Function xyz(a,b,c)            
xyz="<img border='0' src='/images/k.gif' width='100' height='100' class='picb' onMouseover="fixedtooltip('各种内容', this, event)" onMouseout='delayhidetip()'>"
End Functionresponse.write"document.write("""&xyz(4,0,0)&""");"
==============================================================
大家看到了吗?我的问题所在是在 onMouseover="fixedtooltip('各种内容', this, event)" 调用的 function。 
因为里面需要使用 ' 字符,一旦我要 document.write() 内有 ' 字符就会导致输出失败或不符合预想的效果。请大家帮帮忙吧!