我的html文件中有此按钮:
<button id="btn1" name="subject" type="submit" class="btn btn-primary" value="html_j">kll</button>
然后我有一个ID为'sendBtn'的SendButton.txt文件,其中只有1行:
Send Message
我希望来自.txt文件的消息成为按钮的文本。有什么提示吗? T_T
我已尝试通过在main.js中编写此代码来成功为按钮设置默认消息:
var y = document.getElementById('sendBtn');
y.innerText = "Sendddd"
但是我不知道如何从文件中导入文本...
答案 0 :(得分:1)
您不能那样做。您可以使用Node.js读/写文件。无法从前端读取文件的内容。