jQuery trim() 方法去掉字符串的前后空格

 function dosearch(value) {
            if($.trim(value)!='')
            {
                var value = encodeURI(value);//进行编码,不然后台接受的是乱码
                $('#table').datagrid({
                    url: '../Controllers/getCertainPaperData.ashx?name='+value,
                    onLoadError: function () {
                        $.messager.show({
                            title: '提示信息',
                            msg: '没有找到你想要的数据'
                        });
                        $('#table').datagrid({
                            url: '../txt/certainPaperData.txt'
                        });
                    }
                });
            }else
            {
                alert('请输入正确的信息!');
            }
        }
jquery中去掉字符串中的前后空格用$.trim()方法,进行url编码用encodeURI()方法。

你可能感兴趣的:(c#)