<head runat=server> <script type="text/javascript">
$(function () {
var js_timeType = <% =timeType %>; var js_selectStr = "<% =selectStr %>";
var js_Jumb = "<% =Jumb() %>";
} </script>
</head>
以上是前台JS调用.net的方法,不知道你注意到没有,JS调用后台的整形时,是不需要加引号的,而调用字符串的时候才需要。
public class Study
{
public string selectStr = ""; //JS要调用这个字符串
public int timeType = ;//JS要调用这数字 public string Jumb()
{
return "I can";
}
}