我有一个html块,其输入文本字段在手动编辑时会更新整个应用程序。
如何动态定位和更改此输入文本字段?在下文中,这将是value =“2”
<my-attribute param="Count" min="0" max="100" step="1">
<span id="label">Count</span><span id="input">
<dat-input-number id="input" value="2" step="1" min="0" max="100">
<div id="blocker" on-dblclick="" style="width: 152px; height: 15px;"></div>
<input id="number" type="text" on-keydown="">
</dat-input-number></span>
</my-attribute>
答案 0 :(得分:1)
<script>
document.getElementById('number').value = "yourValueHere";
</script>
哦,不要忘记用<input id="number" type="text" on-keydown="">
</input>
答案 1 :(得分:0)
<script>
var theInput = document.getElementById('input');
theInput.value = '5';
</script>
工作演示here
注意:这非常简单,我毫不怀疑您可以通过Google搜索找到足够的知识来自行尝试。 :)