// 获取文本框元素
var textBox = document.getElementById("myTextBox");
// 获取文本框的值
var textValue = textBox.value;

// 创建正则表达式模式,匹配网址的格式
var urlPattern = /^(https?:\/\/)?([\w.-]+)\.([a-z]{2,})(\/[\w.-]*)*\/?$/i;

// 判断文本框中的值是否为链接
if (!urlPattern.test(textValue)) {
  // 如果不是链接,则添加 http:// 前缀
  textBox.value = "http://" + textValue;
}