我正在尝试创建一个健身房会员数据库,它需要存储用客户网络摄像头拍摄的照片。我有凸轮工作,一旦你拍照,你可以使用下面的代码回声'文件的网址。
以下代码加载网址:
<script type="text/javascript">
function getSnap(linky){
alert(linky);
}
</script>
我的问题是如何才能获得它,以便上面的代码自动填充到文本字段中?
任何帮助将不胜感激:)
答案 0 :(得分:0)
假设您有一个名为#example
的输入,然后将其放在此而不是警告
var example = document.getElementById('example');
example.value = linky; // set the value of an input
example.src = linky; // set the source of an image
example.innerHTML = linky; // Set as content of a div/block-element
example.href= linky; // set target for a anchor
答案 1 :(得分:0)
为您的文字字段添加ID(ex URL)并使用document.getElementById('URL').value = linky;
答案 2 :(得分:0)
您需要通过id或class选择输入字段,并将值设置为返回的URL。在下面的例子中,我们使用ID,因此它将是输入的ID标记。
<script type="text/javascript">
function getSnap(linky){
var elem = document.getElementById("myInput");
elem.value = linky;
}
</script>
<input id="myInput" />