我有这个网页
<input id="show" style="display: inline;" type="button" onclick="document.getElementById('hash').value = hex_sooml('M77LNALA');" value="Show Password">
<input style="display: inline;" id="hash" size="50" type="text">
<script type="text/javascript">
function hex_soom1(pass)
{
return pass;
}
</script>
当我点击按钮时没有任何反应。为什么呢?
答案 0 :(得分:1)
我已从函数名称中删除了_soom1,它正在运行:http://jsfiddle.net/g4dboz12/
<input id="show" style="display: inline;" type="button" onclick="document.getElementById('hash').value = hex('M77LNALA');" value="Show Password">
<input style="display: inline;" id="hash" size="50" type="text">
<script type="text/javascript">
function hex(pass) {
return pass;
}
</script>