2016-11-11 59 views
-3

在這裏,我想陷阱和警報或echo var值thisCount 問題是我無法顯示value.I'd試了很多辦法,但沒有運氣。如何在javascript中顯示變量的值?

$(document).on("click", ".open-dialog", function() { 

    var thisCount = $(this).data('count'); 

    //this place the code 

    $(".modal-body #count").val(thisCount); 
}); 
+3

您需要提供一個[MCVE],並學習如何使用代碼格式化編輯#1的功能。 – Quentin

+0

你可以使用'.html()' –

+0

'alert(value)'? – jdmdevdotnet

回答

1

你的問題並沒有真正闡明你已經嘗試什麼,或者你想要顯示的值,但常見的答案是:

1)控制檯。這將輸出到您的瀏覽器日誌。

console.log(thisCount); 

2)如果你希望把它變成一個HTML標記,你可以使用經典的JavaScript

document.getElementById('yourTagsId').innerHTML += thisCount; 
// You can use = instead of += as well 

3)您也可以使用提醒或確認

alert(thisCount); 

confirm(thisCount, function(){return true;}); 
// confirm takes both a displayed value, and a function which will be performed when the user presses the 'Ok' button 
0

也許你應該驗證是否jQuery庫正確導入 此外,您還可以使用Chrome開發人員工具(按Ctrl +移位 + ),並驗證在JavaScript控制檯的值。只是爲了看看你是否可以在調試器中看到這個值。

0

如果您需要啊data屬性這樣的下面。 alertconsole.log都正在

$(document).on("click", ".open-dialog", function() { 
 

 
    var thisCount = $(this).data('count'); 
 

 
    $("#count").val(thisCount); 
 
    console.log(thisCount) 
 
    alert(thisCount) 
 
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 

 
<button class="open-dialog" data-count="hello">click</button> 
 
<input type="text" id="count">