我有一个jQuery方法,在单击时返回div
的文本。此方法位于.js
文件中。我想使用另一个类中的方法,该方法使用被点击的div中的文本作为参数。
的JavaScript / jQuery的:
$(document).on('click', '#clicked div', function () {
var temp = $(this).html();
temp = temp.replace('<span>', '').replace('</span>', '');
// someMethod(temp);
});
Class.cs
:
public string someMethod(string str){
return str;
}
如何从JavaScript文件中访问此方法?
答案 0 :(得分:2)
使该类静态并添加该方法,即someMethod 在那里,然后对该方法进行ajax调用
public static class Yourclass
{
public static string someMethod(string str)
{
return str;
}
}