| date created | 2026-01-19 |
|---|---|
| date modified | 2026-03-31 |
AI 编程实战分享 2026.03.31
云谦
| var parser = function(url) { | |
| var a = document.createElement('a'); | |
| a.href = url; | |
| var search = function(search) { | |
| if(!search) return {}; | |
| var ret = {}; | |
| search = search.slice(1).split('&'); | |
| for(var i = 0, arr; i < search.length; i++) { |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /** | |
| * converted stringify() to jQuery plugin. | |
| * serializes a simple object to a JSON formatted string. | |
| * Note: stringify() is different from jQuery.serialize() which URLEncodes form elements | |
| * UPDATES: | |
| * Added a fix to skip over Object.prototype members added by the prototype.js library | |
| * USAGE: | |
| * jQuery.ajax({ |