1
私はshowedit
関数を引数で呼び出しています。しかし、私はalert
それは部分的な値を表示している関数です。ここでJavaScript関数が全体の値を取得しない
は、HTMLコードである:ここで
<a href="javascript:void(0)" onclick="showedit(856478546521458789);">
<i class="fa fa-pencil-square-o" aria-hidden="true" style="font-size: 20px;float: right;"></i>
</a>
はJavascriptコードです:
function showedit(id) {
alert(id);
document.getElementById("update_status_" + id).style.display = "block";
document.getElementById("status_" + id).style.display = "none";
}
あなたは問題が何であるかを教えてもらえますか?
[数値が精度を失うことなく進むことができるJavaScriptの最大整数値は何ですか?](https://stackoverflow.com/questions/307179/what-is-javascripts-highest-integer-value-that -a-number-can-go-to-without-losin) –
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER – Teemu
多分あなたは次のように書くべきです数字ではなく文字列。 – Stephan