JS 单引号 双引号问题,下面的有错误.
发布网友
发布时间:2024-10-04 01:16
我来回答
共1个回答
热心网友
时间:2024-10-04 01:31
<html>
<script>
function test(cf) {
object[cf] = this;
this.show = function() {
document.write('<input type="button" value="test" onclick="object[\'' + cf + '\'].test1();">');
}
this.test1 = function() {
alert("Hello World!");
}
}
var object = new Object();
var x = new test("cf");
x.show();
</script>
<body>
</body>
</html>