Click here to Skip to main content
15,896,726 members

creend - Professional Profile



Summary

    Blog RSS
45
Authority
-22
Debator
0
Enquirer
32
Organiser
389
Participant
0
Author
0
Editor
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralSpringGraphRoamer Pin
creend17-Nov-11 20:06
creend17-Nov-11 20:06 
Generalencoding2 Pin
creend9-Feb-11 21:07
creend9-Feb-11 21:07 
Generalencoding Pin
creend9-Feb-11 16:16
creend9-Feb-11 16:16 
Generalwindow.open post Pin
creend5-Jul-10 22:29
creend5-Jul-10 22:29 
因为window.open打开新窗口时,只能(貌似,不能100%确定)用get的方式传递参数(加到url后面),如果参数较长,就可能出现问题。
如果是open的是本域的url, 可通过window.opener访问父窗口的JS变量;如果是跨域访问,JS运行就会出现安全问题,window.opener将不能正常运行。

这里给出一种是用post传递参数的方法。 其核心思想是:先window.open一个临时的window,然后用js动态添加一个form, form中的textarea中存储想要的参数。然后用js自动提交这个form,form的action属性指定的url就是最终想要的地址。

function openWindow(str_url, dt_param) {
var str_form_head = '<form name="tempForm" action="' + str_url + '" method="post" style="display:none">';
var str_form_foot = '</form>';
var str_form_param = '<textarea name="postData">' + dt_param + '</textarea>';
var str_javascript_execute = '<script type="text/javascript">document.tempForm.submit();</sc' + 'ript>';

var arr_data = new Array();
arr_data.push('<h3>Please wait ...</h3>');
arr_data.push(str_form_head);
arr_data.push(str_form_param);
arr_data.push(str_form_foot);
arr_data.push(str_javascript_execute);
var oWin = window.open('');
oWin.document.write(arr_data.join(''));
return oWin;
}
Generalsc Pin
creend3-Nov-09 19:40
creend3-Nov-09 19:40 
GeneralRe: sc Pin
creend28-Jan-10 16:38
creend28-Jan-10 16:38 
GeneralTJ2R3-WHW22-B848T-B78YJ-HHJWJ Pin
creend9-Sep-09 21:32
creend9-Sep-09 21:32 
Generalhttp://go2.microsoft.com/fwlink/?LinkID=87096&amp;errorID=1603&amp;component=dev Pin
creend26-Jul-09 19:43
creend26-Jul-09 19:43 
GeneralAboutScript Pin
creend1-Jul-09 23:16
creend1-Jul-09 23:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.