87,993
社区成员
发帖
与我相关
我的任务
分享
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<div id="myid">asdfg</div>
<script type="text/javascript">
var $L = function (id){
return new $L.fn.init(id);
}
$L.fn = $L.prototype;
$L.fn.init = function (id){
var re = new RegExp("#(\\w+)","i");
var result = re.test(id);
this.xid = document.getElementById(RegExp.$1);
}
$L.fn.init.prototype = $L.fn;
$L.fn.click_L = function(cl){
this.xid.onclick =cl;
return this;
};
$L("#myid").click_L(function() {
alert("ok");
});
$L("#myid").innerHTML="开始";
</script>
</body>
</html>
var $L = function (id){
return new $L.fn.init(id);
}
$L.prototype = {
get innerHTML(){
return this.xid.innerHTML;
},
set innerHTML(value){
this.xid.innerHTML = value;
}
};
$L.fn = $L.prototype;
$L.fn.init = function (id){
var re = new RegExp("#(\\w+)","i");
var result = re.test(id);
this.xid = document.getElementById(RegExp.$1);
}
$L.fn.init.prototype = $L.fn;
$L.fn.click_L = function(cl){
this.xid.onclick =cl;
return this;
};
$L("#myid").click_L(function() {
alert("ok");
});
$L("#myid").innerHTML="开始";