I have a confirm modal that will delete a user (from XML file), it shows the user name in the confirmation modal, but when i'm trying to get that value to a variable to pass it to php via AJAX, I can't get the value of the html element (span), so I can't pass it to php... when I alert it, its clear.
我有一个确认模式将删除用户(从XML文件),它在确认模式中显示用户名,但是当我试图将该值传递给变量以通过AJAX将其传递给php时,我可以'得到html元素(span)的值,所以我无法将它传递给php ...当我提醒它时,它清晰。
This is the Dialog HTML
这是Dialog HTML
<div id="myDialog">
<h3>¿Está seguro de eliminar al usuario <b><span id="nombre_usuario_borrar"></span></b> ?</h3>
</div>
This is the Dialog.js
这是Dialog.js
$(function() {
$("#myDialog").dialog({
autoOpen: false,
modal: true,
title: "Eliminar",
buttons: {
'Eliminar': function() {
var usuario_borrar = $('#nombre_usuario_borrar').val();
alert(usuario_borrar);// It alerts nothing
$.ajax({
type: "POST",
url: 'eliminar2.php',
data: {
"usuario_borrar": usuario_borrar
},
error: function(result) {
alert("Error!!!");
}
});
$(this).dialog('close');
},
'Cancelar': function() {
$(this).dialog('close');
}
}
});
});
function Editar(nombre_archivo) {
alert(nombre_archivo);
}
function Eliminar(nombre_archivo) { // this works.
$("#nombre_usuario_borrar").html(nombre_archivo);
$("#myDialog").dialog("open");
}
function asignarUsuarioBorrar(nombre_archivo){
var obj = $("#usuario_borrar");
obj.attr("value",nombre_archivo);
}
As you can see, it shows 'Benigno' (span) value right, but when I click 'Eliminar', it alerts nothing.
正如您所看到的,它显示'Benigno'(跨度)值正确,但是当我点击'Eliminar'时,它什么也没有提醒。
1 个解决方案
#1
1
$('#nombre_usuario_borrar').val()
This only works for HTML elements with a "value" option. The <span>
tag does not have this option.
这仅适用于具有“值”选项的HTML元素。 标记没有此选项。
Try this instead to get the text within the <span>
:
试试这个来获取中的文本:
$('#nombre_usuario_borrar').text()
#1
1
$('#nombre_usuario_borrar').val()
This only works for HTML elements with a "value" option. The <span>
tag does not have this option.
这仅适用于具有“值”选项的HTML元素。 标记没有此选项。
Try this instead to get the text within the <span>
:
试试这个来获取中的文本:
$('#nombre_usuario_borrar').text()