gpt4 book ai didi

javascript - 如何在Ajax中添加DIV标签

转载 作者:行者123 更新时间:2023-11-28 02:27:31 24 4
gpt4 key购买 nike

我试图在 ajax 中插入一个 div 标签,但我不知道如何插入。到目前为止,这是我的代码:

function userLogin(){
var email = $("#login_username_text").val();
var password = $("#login_password_text").val();
var login_url = connect_url+'retrieveUser.php?email='+email+"&password="+password;

$.ajax({
type: 'GET',
url: login_url,
async: true,
jsonpCallback: 'userCallback',
contentType: "application/json",
dataType: 'jsonp',
success: function(json) {
is_logged = (json[0].logged==0)?false:true;
alert(is_logged);
alert(email);
alert(password);

if(is_logged==false){
alert ("Invalid Username and Password"); //I want to change
//this into a div tag so that it will be displayed on the page itself and so that
//I can add CSS codes here
}
},
error: function(e) {

}
});
}

我尝试了 document.getElementById('login_invalid').innerText = '无效的用户名和密码。'; 但不起作用...有什么想法吗?

谢谢!

最佳答案

尝试

$("<div/>", {
"class": "test",
text: "Invalid Username and Password",
}).appendTo("body");

关于javascript - 如何在Ajax中添加DIV标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14702791/

24 4 0