如何用Javascript更新数据

本文关键字:数据 更新 Javascript 何用 | 更新日期: 2023-09-27 18:10:51

如何在OnChange事件上更新数据库中的数据?我有一个WebMethod,它返回一个HTML,所以我不能看到这些元素,所以我认为解决方案将是一个javascript函数。

一个文本区从数据库中捕获文本,如果用户改变了这一点,数据库字段必须更新。

    [WebMethod]
    public static object ListAdvertise(string transaction)
    {
        StringBuilder retorno = new StringBuilder(160000);
        Utilidade.QuebraToken tk2 = new Utilidade.QuebraToken();
        string Credenciada = tk2.CarregaToken(1, HttpContext.Current.Request.Cookies["token"].Value);

        string select3 = "SELECT * FROM San_Imovel WHERE Status_Id = 1 AND Credenciada_Id = " + Credenciada + " AND Transacao_Id IN (" + transacao + ") ORDER BY NomeCidade, NomeBairro, Imovel_Id ASC";

        Utilidade.Conexao c3 = new Utilidade.Conexao();
        SqlConnection con3 = new SqlConnection(c3.Con);
        SqlCommand cmd3 = new SqlCommand(select3, con3);
        con3.Open();
        SqlDataReader r3 = cmd3.ExecuteReader();
        while (r3.Read())
        {
            Imovel_Id = r3["Imovel_Id"].ToString();
            Endereco = r3["Descricao"].ToString() + " " + r3["Logradouro"].ToString() + " " + r3["Numero"].ToString() + "/" + r3["DscComplemento"].ToString() + " " + r3["Complemento"].ToString() + " - " + r3["NomeBairro"].ToString();
            TextoAnuncio = r3["TextoAnuncio"].ToString();
            if (count % 2 == 0)
            {
                classe = "EstiloDalinhaGrid";
            }
            else
            {
                classe = "EstiloDalinhaAlternativaGrid";
            }

            retorno.Append("<tr class='" + classe + "'>");
            retorno.Append("<td>");
            retorno.Append(Imovel_Id);
            retorno.Append("</td>");
            retorno.Append("<td>");
            retorno.Append(Endereco);
            retorno.Append("</td>");
            retorno.Append("<td>");
        retorno.Append("<textarea id='txtArea'>");
            retorno.Append(TextoAnuncio);
        retorno.Append("</textarea>");
            retorno.Append("</td>");
            retorno.Append("<td>");
            retorno.Append("<input type='checkbox' class='imoveisMarcados' id='" + Imovel_Id + "' />");
            retorno.Append("</td>");
            retorno.Append("</tr>");
            count++;
        }
        retorno.Append("</table>");
        con3.Close();
        return new
        {
            retorno = string.Format(retorno.ToString())
        };

如何用Javascript更新数据

我认为你必须使用Ajax来更新你的数据库。

点击此链接了解更多关于ajax与Php(您可以选择任何您喜欢的服务器端语言)

Ajax with PHP