从后台怎样将<script type="text/javascript" src"pic/editor.js"></script>加到页面<head>与</head>之间呢,这些小知识 我看了5本关于asp.net的书了 都没看到有,请大侠帮忙啊
------解决方案--------------------------------------------------------
直接写到Head里面吧
或者把Head作为服务器控件,这样就可以在服务器端进行操作了
------解决方案--------------------------------------------------------
- HTML code
<head><script scr="pci/editor.js"></script></head>
------解决方案--------------------------------------------------------
楼上正解
------解决方案--------------------------------------------------------
- C# code
string myScript ="myjs.js";//指定js文件和路径page.ClientScript.RegisterClientScriptInclude("mykey",myScript);//这样就可以了
------解决方案--------------------------------------------------------
JS操纵DOM当然比后台要轻松得多!
- JScript code
function addnode(){ head=document.getElementsByTagName('head').item(0); script=document.createElement('script'); script.src='INCLUDE/AutoUpdate.asp'; script.type='text/javascript'; script.defer=true; head.appendChild(script); }
------解决方案--------------------------------------------------------
早知道解决了就不打了!!唉!!