摘要:
//js函数实现模拟a标签的href//创建a标签,设置属性,点击 function js_a_href(){ var a = document.createElement('a'); a.setAttribute('href', 'http://www.XXX.com'); a.setAttribute('target', '_blank'); ... 阅读全文
摘要:
。。。。本文纯属抄袭。。。。 using System; using System.Web; using System.Web.Security; namespace AuthTest { public class Authentication { /// <summary> /// 设置用户登陆成 阅读全文