我制作了一个脚本,如果用户未登录,它将创建一个登录表单。我已经使用 html() 函数创建了表单(如果有更好的选择,请告诉我)。到目前为止,这一切正常,一旦给出正确的用户名/密码,表单就会让用户登录。
我的问题是,即使事后添加了代码,我也无法在这些新添加的表单上运行 jquery 函数。例如,像
$('#usernamefield').attr('value', 'login');
什么都不做。显然我做错了什么,但我不确定是什么。我在下面提供了相关代码(关于提交到服务器的部分已删除)。这段代码所做的只是在用户未登录时创建表单。然后我只想在单击用户名表单时弹出一个警报,但显然该部分在此示例中不起作用。
//This will create the login form and will submit data to the server and perform an action based on the results
var loginForm = function(){
$('.logindiv').html("<!-- Form Code Start --><form id='login' method='post' accept-charset='UTF-8'><input type='hidden' name='submitted' id='submitted' value='1'/><div><span class='error'></span></div><label for='username' >UserName*:</label><input type='text' name='formusername' id='formusername' value='' maxlength='50' /><span id='login_username_errorloc' class='error'></span><label for='password' >Password*:</label><input type='password' name='formpassword' id='formpassword' maxlength='50' /><span id='login_password_errorloc' class='error'></span><input type='submit' name='Submit' value='Submit' /></form>")
};
$(document).ready(function(){
//Check Login and load appropriate apps based on result
$.post('./reg_source/check_login.php', function(data) {
//If the user is logged in then this section will run. Ugh double negatives!
if (data !== "false") {
getUserData(data);
$('.logindiv').html("Welcome back, "+dbdata[4]+"! <br> <a href='reg_source/logout.php'>Logout</a> | <a href='profile.php'>Profile</a>");
}
//If the user is NOT logged in then this will run
else if (data === "false")
{
loginForm();
$('.registerdiv').html("<a href = 'register.php'>Register Here</a>");
}
});
$('#formusername').click(function(){
alert("You clicked me!");
});
});