- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当用户选择特定名称时,我尝试将数据库中的信息自动填充到文本字段中。我使用动态添加的唯一名称初始化了文本字段。
这是表格的表格:
<form name="senarai" id="senarai">
<div class="container table-responsive col-lg-10">
<table class="table table-hover table-responsive table-bordered" id="demo_table" >
<thead>
<tr>
<td class="text-center col-lg-1">#</td>
<td class="text-center col-lg-3">Nama</td>
<td class="text-center col-lg-2">No Personal</td>
<td class="text-center col-lg-1">Department</td>
<td class="text-center col-lg-1">Telefon</td>
<td class="text-center col-lg-1">Ext</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</form>
</div>
</div>
<!-- buttons -->
</head>
<div class="form-group">
<div class="row">
<input type="button" class="add-row" value="Add Row">
<button type="button" class="delete-row">Delete Row</button>
</div>
</div>
下面的 JavaScript 动态添加了文本字段。它包含一个选择字段和文本字段,这些字段将填充从数据库中获取的信息。
<script>
count=1;
$(document).ready(function(){
$(".add-row").click(function(){
var markup = '<tr><td class="col-lg-3"><input type="checkbox" name="rekod"></td>';
markup += '<td class="col-lg-3"><select id="nama'+ count +'" name="nama[]" class="form-control"><option value="">Choose</option><?php foreach($nama as $key => $value):echo '<option value="'.$key.'">'.addslashes($value).'</option>'; endforeach; ?></select></td>';
markup += '<td class="col-lg-2"><input type="text" name="nopersonal'+ count +'" value="test"></td>';
markup += '<td class="col-lg-1"><input type="text" name="jabatan'+ count +'"></td>';
markup += '<td class="col-lg-1"><input type="text" name="telefon'+ count +'"></td>';
markup += '<td class="col-lg-1"><input type="text" name="ext'+ count +'"></td></tr>';
$("table tbody").append(markup);
count++;
});
// Find and remove selected table rows
$(".delete-row").click(function(){
$("table tbody").find('input[name="rekod"]').each(function(){
if($(this).is(":checked")){
$(this).parents("tr").remove();
}
});
});
});
</script>
这是自动填充文本字段的 JavaScript 代码。
<script type="text/javascript">
jQuery(document).ready(function ()
{
$(document).on('change','#nama'+ count +'',function(){
var ID = jQuery(this).val();
if(ID)
{
jQuery.ajax({
url : 'add_demo/get_nama/'+ID,
type : "GET",
dataType : "json",
success:function(data)
{
console.log(data);
alert($('input[name="nopersonal'+count+'"]').val());//the problem is here
$('input[name="jabatan'+count+'"]').val(data.JabID);
$('input[name="telefon'+count+'"]').val(data.notelttp);
$('input[name="ext'+count+'"]').val(data.ext);
}
});
}
else
{
$('input[name="nopersonal"'+count+']').empty();
$('input[name="jabatan'+count+'"]').empty();
$('input[name="telefon'+count+'"]').empty();
$('input[name="ext'+count+'"]').empty();
}
});
});
</script>
我无法将 id 放在文本字段中,它会在控制台中产生问题和警告。我尝试使用文本字段名称属性,但无法识别动态名称“nopersonal'+count+'”。
当我尝试这个时:
alert($('input[name="nopersonal'"]').val()); //i put test value in the textfield
可以识别文本字段,并且值会显示在警报中。
我该如何解决这个问题?谢谢。
编辑:我添加了几行,html如下
<td class="col-lg-2"><input type="text" name="nopersonal1" value="test"></td>
<td class="col-lg-2"><input type="text" name="jabatan1" value="test"></td>
<td class="col-lg-2"><input type="text" name="telefon1" value="test"></td>
<td class="col-lg-2"><input type="text" name="ext1" value="test"></td>
<td class="col-lg-2"><input type="text" name="nopersonal2" value="test"></td>
<td class="col-lg-2"><input type="text" name="jabatan2" value="test"></td>
<td class="col-lg-2"><input type="text" name="telefon2" value="test"></td>
<td class="col-lg-2"><input type="text" name="ext2" value="test"></td>
<td class="col-lg-2"><input type="text" name="nopersonal3" value="test"></td>
<td class="col-lg-2"><input type="text" name="jabatan3" value="test"></td>
<td class="col-lg-2"><input type="text" name="telefon3" value="test"></td>
<td class="col-lg-2"><input type="text" name="ext3" value="test"></td>
文本字段名称按其应有的顺序排列。但如果您注意到的话,控制台中有 14 个“输入”,没有“+count+”。如果我将 id 与“+count+”放在一起,则会出现具有重复 14 个元素的非唯一 id 的控制台。
selector string: input[name="nopersonal"] selected element: n.fn.init(14) [input, input, input, input, input, input, input, input, input, input, input, input, input, input, prevObject: n.fn.init(1), context: document, selector: "input[name="nopersonal"]"]
我不确定这是什么原因。你有什么想法吗?
最佳答案
alert($('input[name="nopersonal'+count+'"]').val());//the problem is here
您是否尝试过首先将选择器构建为字符串,console.log
它以确认它看起来正确,然后然后将其传递给 jQuery?我想知道 count
是否由于某种原因可能存在问题。如果它只是一个数字,JS 会在它成为 jQuery 问题之前将其插入字符串中。
编辑:
jQuery.ajax({
url : 'add_demo/get_nama/'+ID,
type : "GET",
dataType : "json",
success: function(data) {
console.log(data);
// Changes
const selectorString = 'input[name="nopersonal'+count+'"]';
console.log("selector string: ", selectorString, "selected element: ", $(selectorString));
alert($(selectorString).val());
// /Changes
$('input[name="jabatan'+count+'"]').val(data.JabID);
$('input[name="telefon'+count+'"]').val(data.notelttp);
$('input[name="ext'+count+'"]').val(data.ext);
}
});
关于javascript - 如何在ajax中引用文本字段名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60050406/
表架构 DROP TABLE bla; CREATE TABLE bla (id INTEGER, city INTEGER, year_ INTEGER, month_ INTEGER, val I
我需要拆分字符串/或从具有以下结构的字符串中获取更容易的子字符串。 字符串将来自 window.location.pathname 或 window.location.href,看起来像 text/n
每当将对象添加到数组中时,我都会尝试更新 TextView ,并在 TextView 中显示该文本,如下所示: "object 1" "object 2" 问题是,每次将新对象添加到数组时,它都会覆盖
我目前正在寻找使用 Java 读取网站可见文本并将其存储为纯文本字符串的方法。 换句话说,我想转换成这样: Hello stupid World进入“ Hello World ” 或者类似的东西 Un
我正在尝试以文本和 HTML 格式发送电子邮件,但无法正确发送正确的 header 。特别是,我想设置 Content-Type header ,但我找不到如何为 html 和文本部分单独设置它。 这
我尝试了上面的代码,但我无法绑定(bind)文本,我怎样才能将资源内部文本 bloc
我刚刚完成了 Space Shooter 教程,由于没有 GUIText 对象,所以我创建了 UI.Text 对象并进行了相应的编码。它在统一播放器中有效,但在构建 Web 应用程序后无效。我花了一段
我有这个代码: - (IBAction)setButtonPressed:(id)sender { NSUserDefaults *sharedDefaults = [[NSUserDefau
抱歉标题含糊不清,但我想不出我想在标题中做什么。无论如何,对于图像上的文本,我使用了 JLabel 文本并将其添加到图标中。 JLabel icon = new JLabel(new Imag
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我在将 Twitter 嵌入到我从 HTML 5 转换的 wordpress 运行网站时遇到问题。 我遇到的问题是推文不是我的自定义字体... 这是我无法使用任何 css 定位的 HTML 代码,我正
我正在尝试找到解决由于使用以下形式的代码而导致的冗余字符串连接问题的最佳方法: logger.debug("Entering loop, arg is: " + arg) // @1 在大多数情况下,
我写了这个测试 @Test public void removeRequestTextFromRouteError() throws Exception { String input = "F
我目前正在创建一个正则表达式来拆分所有匹配以下格式的字符串:&[文本],并且需要获取文本。字符串可能类似于:something &[text] &[text] everything &[text] 等
有没有办法将标题文本从一个词变形为另一个词,同时保留两个词中使用的字母?我看过的许多 css 文本动画大多是视觉的,很少有旋转整个单词的。 我想要做的是从一个词过渡,例如“BEACH”到“CHANGE
总结matplotlib绘图如何设置坐标轴刻度大小和刻度。 上代码: ?
我在容器 (1) 中创建了容器 (2)。你能帮忙如何向容器(1)添加文本吗?下面是我的代码 return Scaffold( body: Padding( padding: c
我似乎找不到任何人或任何人这样做过。我试图限制我们使用的图像数量,并想创建一个带有渐变作为其“颜色”的文本,并在其周围设置渐变轮廓/描边 到目前为止,我还没有看到任何将两者结合在一起的东西。 我可以自
我正在为视频游戏暗黑破坏神 2 使用 discord.py 构建一个不和谐机器人。其中一项功能要求机器人从暗黑破坏神 2 屏幕截图中提取项目的名称和属性。我目前正在为此使用 pytesseract,但
我很难弄清楚如何旋转 strip.text theme 中的属性来自 ggplot2 .我使用的是 R 版本 3.4.2 和 ggplot2 版本 2.2.1。 以下是 MWE 的数据。 > dput
我是一名优秀的程序员,十分优秀!