-
WIBUHAX0R1337
-
/
home
/
zqegovsj
/
public_html
/
us3.supplierlist.com
/
haibo
/
en
/
templates
/
newmember
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
comment_index.html
2.341KB
Edit File
Delete File
Rename
company.html
5.063KB
Edit File
Delete File
Rename
company_branner.html
1.439KB
Edit File
Delete File
Rename
contact.html
10.84KB
Edit File
Delete File
Rename
creat_excel.html
0.594KB
Edit File
Delete File
Rename
download_edit.html
2.483KB
Edit File
Delete File
Rename
feedback_branner.html
1.458KB
Edit File
Delete File
Rename
flash_edit.html
3.023KB
Edit File
Delete File
Rename
flash_list.html
2.586KB
Edit File
Delete File
Rename
foot.html
2.377KB
Edit File
Delete File
Rename
freemember1.html
8.989KB
Edit File
Delete File
Rename
freemember2.html
11.075KB
Edit File
Delete File
Rename
freemember3.html
1.998KB
Edit File
Delete File
Rename
freemember4.html
14.484KB
Edit File
Delete File
Rename
head.html
11.417KB
Edit File
Delete File
Rename
home.html
6.464KB
Edit File
Delete File
Rename
img.html
2.117KB
Edit File
Delete File
Rename
img_list.html
3.405KB
Edit File
Delete File
Rename
member_edit.html
10.083KB
Edit File
Delete File
Rename
member_index.html
3.014KB
Edit File
Delete File
Rename
member_upload.html
2.5KB
Edit File
Delete File
Rename
menu.html
2.48KB
Edit File
Delete File
Rename
mycart_index.html
5.934KB
Edit File
Delete File
Rename
news.html
2.778KB
Edit File
Delete File
Rename
newstype_edit.html
2.915KB
Edit File
Delete File
Rename
newstype_index.html
2.097KB
Edit File
Delete File
Rename
personal.html
3.997KB
Edit File
Delete File
Rename
photo.html
1.059KB
Edit File
Delete File
Rename
product_branner.html
1.613KB
Edit File
Delete File
Rename
product_edit.html
27.4KB
Edit File
Delete File
Rename
product_list.html
10.698KB
Edit File
Delete File
Rename
product_type.html
4.825KB
Edit File
Delete File
Rename
product_type_action.html
7.422KB
Edit File
Delete File
Rename
qty.html
2.855KB
Edit File
Delete File
Rename
section_list.html
2.281KB
Edit File
Delete File
Rename
sectioncontent_edit.html
8.749KB
Edit File
Delete File
Rename
sectioncontent_index.html
2.817KB
Edit File
Delete File
Rename
status.html
2.472KB
Edit File
Delete File
Rename
tip.html
1.129KB
Edit File
Delete File
Rename
update_ok.html
1.114KB
Edit File
Delete File
Rename
user_edit.html
2.771KB
Edit File
Delete File
Rename
user_index.html
4.045KB
Edit File
Delete File
Rename
<h4><{$la.103}></h4> <div class="row admin-table-filters"> <div class="col-lg-12"> <form action="" name="companyeditfrm" method="post" enctype="multipart/form-data"> <div class="table-responsive"> <table class="table table-bordered darklinks" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td> <div id="navi"> <a href="company.php" class="theme_button color1"><{$la.97}></a> <a href="company_branner.php" class="theme_button inverse wide_button"><{$la.100}></a> </div> </td> </tr> </table> </div> <div class="table-responsive"> <table class="table table-bordered darklinks" width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td bgcolor="#FFFFCC"><{$la.104}> </td> </tr> <tr> <td bgcolor="#FFFFFF"><script name="company_des" id="editor" type="text/plain" style="width:100%; height:500px;"> <{$CompanyInfo.CompanyDescription}></script> <script type="text/javascript"> //实例化编辑器 //建议使用工厂方法getEditor创建和引用编辑器实例,如果在某个闭包下引用该编辑器,直接调用UE.getEditor('editor')就能拿到相关的实例 var ue = UE.getEditor('editor'); function isFocus(e){ alert(UE.getEditor('editor').isFocus()); UE.dom.domUtils.preventDefault(e) } function setblur(e){ UE.getEditor('editor').blur(); UE.dom.domUtils.preventDefault(e) } function insertHtml() { var value = prompt('插入html代码', ''); UE.getEditor('editor').execCommand('insertHtml', value) } function createEditor() { enableBtn(); UE.getEditor('editor'); } function getAllHtml() { alert(UE.getEditor('editor').getAllHtml()) } function getContent() { var arr = []; arr.push("使用editor.getContent()方法可以获得编辑器的内容"); arr.push("内容为:"); arr.push(UE.getEditor('editor').getContent()); alert(arr.join("\n")); } function getPlainTxt() { var arr = []; arr.push("使用editor.getPlainTxt()方法可以获得编辑器的带格式的纯文本内容"); arr.push("内容为:"); arr.push(UE.getEditor('editor').getPlainTxt()); alert(arr.join('\n')) } function setContent(isAppendTo) { var arr = []; arr.push("使用editor.setContent('欢迎使用ueditor')方法可以设置编辑器的内容"); UE.getEditor('editor').setContent('欢迎使用ueditor', isAppendTo); alert(arr.join("\n")); } function setDisabled() { UE.getEditor('editor').setDisabled('fullscreen'); disableBtn("enable"); } function setEnabled() { UE.getEditor('editor').setEnabled(); enableBtn(); } function getText() { //当你点击按钮时编辑区域已经失去了焦点,如果直接用getText将不会得到内容,所以要在选回来,然后取得内容 var range = UE.getEditor('editor').selection.getRange(); range.select(); var txt = UE.getEditor('editor').selection.getText(); alert(txt) } function getContentTxt() { var arr = []; arr.push("使用editor.getContentTxt()方法可以获得编辑器的纯文本内容"); arr.push("编辑器的纯文本内容为:"); arr.push(UE.getEditor('editor').getContentTxt()); alert(arr.join("\n")); } function hasContent() { var arr = []; arr.push("使用editor.hasContents()方法判断编辑器里是否有内容"); arr.push("判断结果为:"); arr.push(UE.getEditor('editor').hasContents()); alert(arr.join("\n")); } function setFocus() { UE.getEditor('editor').focus(); } function deleteEditor() { disableBtn(); UE.getEditor('editor').destroy(); } function disableBtn(str) { var div = document.getElementById('btns'); var btns = UE.dom.domUtils.getElementsByTagName(div, "button"); for (var i = 0, btn; btn = btns[i++];) { if (btn.id == str) { UE.dom.domUtils.removeAttributes(btn, ["disabled"]); } else { btn.setAttribute("disabled", "true"); } } } function enableBtn() { var div = document.getElementById('btns'); var btns = UE.dom.domUtils.getElementsByTagName(div, "button"); for (var i = 0, btn; btn = btns[i++];) { UE.dom.domUtils.removeAttributes(btn, ["disabled"]); } } function getLocalData () { alert(UE.getEditor('editor').execCommand( "getlocaldata" )); } function clearLocalData () { UE.getEditor('editor').execCommand( "clearlocaldata" ); alert("已清空草稿箱") } </script></td> </tr> <td bgcolor="#FFFFCC"><input type="submit" name="CompanyEdit" value=" / <{$la.102}> / " class="theme_button color1"></td> </tr> </table> </div> </form> </div></div> <{include file="newmember/foot.html"}>
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat