我有以下函数调用:
var id = $(this).attr("id");
var style = $.trim($(this).find(".tdStyle").html());
var qtyOnHand = $.trim($(this).find(".tdQtyOnHand").html());
var PlantID = $.trim($(this).find(".tdPlantID").html());
var Size = $.trim($(this).find(".tdSize").html());
dialogOpen(id, style, qtyOnHand, $(this), Size);
我试图通过从各种元素中获取值来将多个值传递到我的dialogOpen函数中。在我的dialogOpen函数中,每个值都可以正常工作,但最后一个_Size除外。我在使用以下内容之前测试了_Size的值:
var _Size = ($.trim($(this).find(".tdSize").html()));
console.log(_Size);
console.log显示2.378
这是我的函数代码的开头,我得到undefined(在xSize上):
function dialogOpen(ID, style, QtyOnHand, row, PlantID, xSize)
{
debugger;
console.log(xSize);
$('#dialogForm').dialog({
title: 'Enter Quantity',
height: 200,
答案 0 :(得分:2)
您只发送5个参数。可能只是一个错误。改变这个:
dialogOpen($(this).attr("id"), $.trim($(this).find(".tdStyle").html()), $.trim($(this).find(".tdQtyOnHand").html()), $(this), $.trim($(this).find(".tdPlantID").html(), _Size));
对此:
dialogOpen($(this).attr("id"), $.trim($(this).find(".tdStyle").html()), $.trim($(this).find(".tdQtyOnHand").html()), $(this), $.trim($(this).find(".tdPlantID").html()), _Size);
答案 1 :(得分:1)
有六个参数,呼叫中只有五个值。
您为括号设置了错误的倒数第二个值,因此最后两个值位于括号内,并且在它们之间使用逗号运算符。
你有:
$.trim($(this).find(".tdPlantID").html(), _Size)
但你应该:
$.trim($(this).find(".tdPlantID").html()), _Size