2013-12-13 77 views
-5

我是新來的JavaScript,我想打印網頁上我的變量,而不是使用<span>innerHTMLJavaScript來在屏幕上打印

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

我怎麼能這樣做?

+0

要打印的地方?在控制檯意味着使用'console.log(ipPAAmt)'警報手段使用'alert(ipPAAmt)'在html意味着使用'$('#yourElementID')。html(ipPAAmt);' –

+0

請解釋您的問題... – ArchFever

+0

重複的http://stackoverflow.com/questions/9689109/how-to-display-javascript-variables-in-a-html-page-without-document-write – Scott

回答

1

有適用於您的情況,在更詳細的解答: How to display javascript variables in a html page without document.write

基本上你想創建一個HTML元素,然後用你的變量替換的內容。

+0

避免只是鏈接到其他答案。你已經確定了一個重複的問題,它應該被標記爲這樣。 http://stackoverflow.com/questions/9689109/how-to-display-javascript-variables-in-a-html-page-without-document-write – Scott

+0

謝謝,我試圖找出如何但沒有代表在當時做它。我現在這樣做,所以我現在要確保這樣做。 – user3098015

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