**enter code here**
请检查上述代码。
// {{1}}我需要1才能返回到var x
答案 0 :(得分:1)
您需要:
HTML PART:
<button id="one" onclick="onefunction()">Try it</button>
<p id="demo"></p>
JS PART:
function onefunction() {
document.getElementById("demo").innerHTML = 1;
}
但我不建议采用这种编码方式