﻿/******************
* enter键提交表单
******************/
function enterSubmit(evt, callback) {
    evt = evt ? evt : window.event;
    if (13 == window.event.keyCode) {callback() };
}
/*****************
* 根据ID引用元素
*****************/
function $$(id) {
    return document.getElementById(id);
}
/******************
* 获取某个url参数
******************/
function getUrlParam(name) {
    var re = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
    var r = window.location.search.substr(1).match(re);
    if (r != null) return unescape(r[2]); return null;
}
/***************
* 复制到剪贴板
***************/
function copyToClipBoard(msg) {
    var clipBoardContent = "";
    clipBoardContent += msg;
    window.clipboardData.setData("Text", clipBoardContent);
    alert("复制成功，请粘贴到您的QQ/MSN上推荐给您的好友！:)");
}
/****************************************************
* 扩展String对象，转换相关标记为html，例如"\r\n..."
****************************************************/
String.prototype.toHtml = function() {
    return this.replace(/[\r\n]/g, "<br>").replace(/ /g, "&nbsp;"); 
}
