先看一下Discuz!中的js代码

function Html5notification() {
	var h5n = new Object();

	h5n.issupport = function() {
		var is = !!window.webkitNotifications;
		if(is) {
			if(window.webkitNotifications.check...

阅读全文>>

1.eval方法

function strToJson(str){ 
var json = eval('(' + str + ')'); 
return json; 
} 

2.new Function方法

function strToJson(str){ 
var json = (new Function("return " + str))(); 
return json; 
...

阅读全文>>

在MySQL下运行完下面这个建表语句后。 如何从数据字典中,检索出这个表的字段的相关信息?

DROP TABLE IF EXISTS test_table;

CREATE TABLE test_table(
  Test_ID int NOT NULL    AUTO_INCREMENT    PRIMARY &nb...

阅读全文>>