如果我从用户输入中获得了域名
domain.com
我必须在http://
,https://
或//
前加上它才能使其正常运行。
在链接标记中将其插入DOM时,预先添加此域的正确方法是什么?
我知道它首先由客户端处理,然后服务器可以根据需要重新定向。
答案 0 :(得分:0)
首先,你需要获得一个元素。然后,您可以在设置href属性时将字符串连接在一起。您可以通过以下几种方式设置href属性:
使用href setter
aElement.href = 'http://' + 'example.com';
使用setAttribute
aElement.setAttribute('href', 'http://' + 'example.com');