我有一些代码允许我搜索“file.txt”以在iframe中显示结果,但是不是用户输入“example.txt”我需要它只需要键入“example”并且然后自动添加.txt扩展名。如何使用我当前的代码执行此操作:
<script>
function append(){
var text1=document.getElementById("input1").value;
document.getElementById("iframe1").setAttribute("src",text1);
}
</script>
</form>
<form name="inputForm" action="" method="get">
<font size="5">File: </font><input type="text" id="input1" name="user">
<input type="button" value="Submit" onclick="append()">
</form>
<iframe id="iframe1" name="frame" src="(FILE).txt" frameborder="1" height="350" width="400" ></iframe>
此方法运行正常,但如何在不必键入.txt?
的情况下实现相同的结果答案 0 :(得分:0)
jQuery应该可以正常工作.appendTo();
http://api.jquery.com/appendTo/
答案 1 :(得分:0)
只需将.txt
附加到字符串,不是吗?
function append(){
var text1=document.getElementById("input1").value;
document.getElementById("iframe1").setAttribute("src", text1+".txt");
}