A question about jumping

$("body").on("click",".ser",function(){
            window.location.href = self.introduce
            // window.open(self.introduce,"_blank")
        })

Why does an open web page have the current url in front of it?
I want to open www.baidu.com
, but what I can open is http://192.168.51.16:8081/www.baidu.com

.
Sep.25,2021

self.introduce without http://, is considered a relative path.

Menu