我正在尝试在html内的表单中显示我的<A id>

像这样

 <input name="indsendte" value="<a id="indsendt"></a>" class="indsendte">


我尝试这样做的原因是因为我有一个javascript函数,看起来像这样。

var indsendt = 0;
 function indsend() {
 indsendt += 1;
 document.getElementById("indsendt").innerHTML = indsendt;
 }


所以基本上我想在表单中显示变量。无论如何有可能吗?

谢谢

最佳答案

如果您不想在输入中显示变量“ indsendt”的值,则可以这样:

      var indsendt = 0;
         function indsend() {
         indsendt += 1;
         document.getElementById("indsendt").innerHTML = indsendt;
         // here is the new line of code
         document.getElementsByName("indsendte")[0].value = indsendt;
         }


看这个example

关于javascript - 在表单中显示<A id>内部占位符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30978262/

10-11 10:22