我是Javascript的新手,我希望我的变量可以在网页上打印,但不能使用<span>
和innerHTML
var pProductCode = $('[name=pProductCode]').val();
$('input[id*="_IP/PA_N_"]').each(function(i){
ipPAAmt += Number(convertToNumber($(this).val()));
});
我该怎么做?
答案 0 :(得分:1)
$('#yourDivID').html(ipPAAmt);
答案 1 :(得分:1)
有更详细的答案适用于您的情况: How to display javascript variables in a html page without document.write
基本上你想创建一个html元素,然后用变量替换内容。