前台js如何调用后台cs有参数的方法
1个回答
展开全部
你试试这个:
CS:
public
string test(string a)
{
return a;
}
aspx:
<html
xmlns="http://www.w3.org/1999/xhtml">
<head
runat="server">
<title>无标题页</title>
<mce:script type="text/javascript" ><!--
var demo=function(){
var a="Hello World";
var b= '<%=test("'+a+'") %>';//这里一定注意单引号和双引号的使用!!!!!
alert(b);
}
//
--></mce:script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input type="button" id="id1" onclick="demo()" value="JS调用CS" />
</div>
</form>
</body>
</html>
CS:
public
string test(string a)
{
return a;
}
aspx:
<html
xmlns="http://www.w3.org/1999/xhtml">
<head
runat="server">
<title>无标题页</title>
<mce:script type="text/javascript" ><!--
var demo=function(){
var a="Hello World";
var b= '<%=test("'+a+'") %>';//这里一定注意单引号和双引号的使用!!!!!
alert(b);
}
//
--></mce:script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input type="button" id="id1" onclick="demo()" value="JS调用CS" />
</div>
</form>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询