我认为我很接近,但我的(小)知识已经结束......
执行此函数时,我的LLORDa和LLINEa不检索表行中的值(因此不会将所有值都插入到我的表中)。从下拉列表中我的SVCDESC谢天谢地获得所选值。有任何想法吗?先谢谢你们!
<script>
jQuery(function() {
jQuery("input:submit, input[type=button], input[type=submit], button, .button").button();
});
function saveSMR()
{
var SVCDescDropDown = $(this);
var row = SVCDescDropDown.closest("tr.row");
var LORDaInput = row.find("input[name=LORDa]");
var LLINEaInput = row.find("input[name=LLINEa]");
jQuery.ajax(
{
url: 'B2BORD493.PGM',
type: 'POST',
data: {task: 'savServMiss', LORDa: LORDaInput.val(), LLINEa: LLINEaInput.val(), SVCDESC: SVCDescDropDown.val()},
}).done(function(message)
{
alert(row.length);
jQuery('#dialog').dialog('close');
});
console.log(LORDaInput.val() + LLINEaInput.val());
}
$(document).ready(function() {
$(function() {
$("select[name=SVCDESC]").on("change", saveSMR);
$("#dialog").dialog({
autoOpen: false
});
$("#pbutton").on("click", function() {
$("#dialog").dialog("open");
});
});
});
</script>
<tr class="row">
<td class="text num">1043121</td>
<td class="text num">22</td>
<select name="SVCDESC">
<option value=""></option>
<option value='STK'>No Stock</option>
<option value='TES'Test Desc</option>
</select>
</td>
<input type="hidden" name="LLINEa" />
<input type="hidden" name="LORDa" />
</tr>
答案 0 :(得分:0)
编辑:对不起,我误解了你的问题。没有为您正在调用的隐藏字段分配值。也许这就是为什么没有价值观?
<input type="hidden" name="LLINEa" />
<input type="hidden" name="LORDa" />
也许像这样的东西会返回一些值?
<input type="hidden" name="LLINEa" value="123" />
<input type="hidden" name="LORDa" value="abc" />