可以用以下变通的方法实现用JavaScript调用服务器端的事件方法
1、增加如下JavaScript方法
这个就是将Asp.Net 中生成的脚本Copy过来,嘿嘿,很贼哦。
function __doPostBack(eventTarget, eventArgument)
{
var theform;
if (window.navigator.appName.toLowerCase().indexOf("microsoft") -1)
{
theform = document.Form1;
}
else
{
theform = document.forms["Form1"];
}
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
theform.submit();
}
//以下就是要从JavaScri...[ 查看全文 ]