html中放一个id="divMsg"的div,通过js判断url来决定显示什么提示内容。
代码
window.onload = function() {
try {
if (document.location.href.indexOf('first/dir') != -1) {
document.getElementById('divMsg').innerText = "第一种文字提示";
}
else if (document.location.href.indexOf('second/dir') != -1) {
document.getElementById('divMsg').innerText = "第二种文字提示";
}
}
catch (e) {
//异常
}
}
try {
if (document.location.href.indexOf('first/dir') != -1) {
document.getElementById('divMsg').innerText = "第一种文字提示";
}
else if (document.location.href.indexOf('second/dir') != -1) {
document.getElementById('divMsg').innerText = "第二种文字提示";
}
}
catch (e) {
//异常
}
}