JavaScript在屏幕上打印

时间:2013-12-13 09:41:03

标签: javascript jquery html

我是Javascript的新手,我希望我的变量可以在网页上打印,但不能使用<span>innerHTML

var pProductCode = $('[name=pProductCode]').val();
$('input[id*="_IP/PA_N_"]').each(function(i){
ipPAAmt += Number(convertToNumber($(this).val()));
});

我该怎么做?

2 个答案:

答案 0 :(得分:1)

$('#yourDivID').html(ipPAAmt);

答案 1 :(得分:1)

有更详细的答案适用于您的情况:  How to display javascript variables in a html page without document.write

基本上你想创建一个html元素,然后用变量替换内容。