使用脚本标记

时间:2017-07-27 08:45:53

标签: javascript html

我想在输入元素上设置这样的值:

<input type="submit" name="submit" id="loginButton" value="<script>document.write(language['login'])</script>"/>

但是我无法让它发挥作用。这不可能吗?

1 个答案:

答案 0 :(得分:0)

使用Javascript,您可以使用value函数将值归因于属性setAttribute

这是一个可能的解决方案:

var button = document.getElementById("#loginButton"); //Select your button element
button.setAttribute("value","Your value to set"); //Set value attribute to your element
祝你好运!