onclick事件改成OnClick="GetPage(你预先处理好的带函数的那个操作数据库asp页面地址)"
在页面里面加个js脚本
<script language="javascript">
function GetPage(webFileUrl)
{
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP")
}
else if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest()
}
xmlHttp.open("GET", webFileUrl, false)
xmlHttp.send("")
xmlHttp.onreadystatechange=function()
{if (xmlHttp.readyState==4){return xmlHttp.responseText}}
if(xmlHttp.status!=200)
{
alert('网络故障(xmlHttp.status='+xmlHttp.status+'),请稍后再试!')
}
alert(xmlHttp.responseText)
}
</script>
然后在那个操作页面的结尾加上
response.write("操作成功")
你说的js的函数库是指的js的内置对象和方法吧,既然是内置的那么就是js默认实现的了,至于有什么自己好好学习一下,比如常用的String,Date,Math,RegExp,等等对象,还有Dom对象啊,要了解js就先从这些基本的开始