简单的:
<a href=”msnim:add?contact=***@***.com”>***</a>
完整的:
//script
function messengerInstalled() {
try {
new ActiveXObject(“MSNMessenger.P4QuickLaunch”);
return true;
} catch (e) {
return false;
}
}
function addMessenger() {
if (messengerInstalled()) {
document.getElementById(“messenger”).href = “msnim:add?contact=***@***.com”;
} else {
alert(“您没有安装MSN或使用的不是IE浏览器!”);
}
}
//body
<a id=”messenger” href=”msnim:chat?contact=***@***.com” onclick=”addMessenger()”>添加好友</a>
We use cookies to improve your experience on our site. By using our site, you consent to cookies.
Manage your cookie preferences below:
Essential cookies enable basic functions and are necessary for the proper function of the website.
These cookies are needed for adding comments on this website.
Statistics cookies collect information anonymously. This information helps us understand how visitors use our website.
Google Analytics is a powerful tool that tracks and analyzes website traffic for informed marketing decisions.
Service URL: policies.google.com
You can find more information in our Cookie Policy and Cookie Policy.
1 Comment
Sehr wertvolle Informationen! Empfehlen!