繁体   English   中英

通过javascript设置输入的值

[英]Setting the value of an input through javascript

我想要做的是通过 javascript 更改代码背后的 C# veriable 值。 我的代码:

HTML & JS -

 function SetPostbackValues() { document.getElementById("hiddenControl").value = "Employer"; } function SetPostbackValues2() { document.getElementById("hiddenControl").value = "Employee"; }
 <!-- it's all inaide a form tag --> <div id="left"> <div id="background" style="background: url(paper.gif); background-size: cover;" onclick="chg();SetPostbackValues();"><img id="man" style="right:16px;" src="https://www.watertankfactory.com.au/wp-content/uploads/2015/08/Smiling-young-casual-man-2.png" /> <div id="desc">employer</div> </div> <div id="trying"></div> </div> <div id="right"> <div id="background2" style="background: url(paper.gif); background-size: cover;" onclick="chg();SetPostbackValues2();"><img id="man2" style="right:16px;" src="https://www.watertankfactory.com.au/wp-content/uploads/2015/08/Smiling-young-casual-man-2.png" /><div id="desc2">employee</div> </div> </div> <input id="hiddenControl" type="hidden" runat="server" />

C# -

protected void RegisterUser()
        {
        //this will run when the client presses on the 'register' button
        ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('Record Inserted Successfully')", true);
        u.Email = Email.Text;
        u.Password = Password.Text;
        u.Firstname = Firstname.Text;
        u.Lastname = Lastname.Text;
        u.Gender = Gender.SelectedItem.Text;
        //relevant bit:
        u.Type = hiddenControl.Value;
        u.Birthday = Birthday.SelectedDate.ToString("dd/MM/yyyy");
        u.Country = Country.Text;
        u.City = City.Text;
        u.Address = Address.Text;

        if (Pfp.HasFile)
        {
            string path = Server.MapPath("pics/");
            Pfp.SaveAs(path + Pfp.FileName);
            u.Pfp = Pfp.FileName;
        }
        s.AddClient(u);
    }

因此,当客户端第一次进入站点时,他们将按下backgroundbackground2 ,它们应该为隐藏输入设置一个值,该值将在代码后面的注册功能中使用。 当我设置断点时,我看到该值始终只是一个空字符串 - ""在我所有的迭代中(尝试在 C# 中To.String()设置To.String() ,并在 javascript 中删除该值周围的 "",什么​​也没有)工作)。 我不明白为什么它不会设置一个值......

谢谢你的帮助!

也许你的错误在 chg() 函数中,检查它。
另一方面,您必须将 "" 添加到这样的值中:

function SetPostbackValues() {
    document.getElementById("hiddenControl").value = "Employer";
}
function SetPostbackValues2() {
    document.getElementById("hiddenControl").value = "Employee";
} 

找到了解决办法,是ID...

在您的代码中,ASP 元素的 ID 是服务器端的。 但是当您运行代码时,客户端中 ASP 元素的 ID 是不同的。 在 javascript 脚本中,函数正在寻找与服务器端 ID 匹配的元素,但它们永远找不到,因此隐藏元素的值将保持空字符串。

TLDR - 像这样白化它以防止脚本检测到客户端代码中(看似)不存在的元素:

function SetPostbackValues() {
        document.getElementById('<%= hiddenControl.ClientID %>').value = "Employer";
    }
function SetPostbackValues2() {
        document.getElementById('<%= hiddenControl.ClientID %>').value = "Employee";
    }    

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM