我有一个加载外部 js 的页面,并且在页面上我有一个函数called calculate_totals()
。我想要的是calculate_totals()
从外部js中的函数调用函数。
这是一段加载到外部 js 中的 JavaScript
function selectItemMouse(thisVar)
{
var searchValue = thisVar.attr('data-name');
thisVar.parent().parent().parent().parent().children('.list').val(searchValue);
//alert(thisVar.parent().parent().parent().parent().next().find('input').focus());
thisVar.children().children().each(function()
{
var dataId = $(this).attr('data-id');
var value = $(this).attr('data-name');
//This change the input of my form
$(thisVar).parent().parent().parent().parent().children().children('.'+dataId).val(value);
});
$('.customerResults').hide();
calculate_totals();
}