|
|
|
รันบน localhost ติด แต่พอเอาไปลง server ไม่ติดเลย อ่าคับ |
|
|
|
|
|
|
|
พี่ครับ code นี้รันใน local host ติด แต่พอเอาไปลง server ดันไม่ติดอ่าคับ
<img id="btnText" onclick="pickColor('ForeColor')" alt="@{TextColor}" src="images/icon_color_text.gif" align="absMiddle" width="36" height="20">
<img id="btnFill" onclick="pickColor('BackColor')" alt="@{BackgroundColor}" src="images/icon_color_fill.gif" align="absMiddle" width="36" height="20">-->
<object id="color" data="colorchooser.html" type="text/x-scriptlet" VIEWASTEXT>
</object>
<script for="color" event="onscriptletevent(name, data)">
setColor(name, data);
</script>
function pickColor(fg)
{
if (!RichEditor.txtView) return; // Disabled in View Source mode
checkRange();
var el = window.event.srcElement;
if (el && el.nodeName == "IMG") {
setState(el, true);
}
color.style.top = window.event.clientY + 10;
color.style.left = window.event.clientX - 100;
color.style.display = 'block';
color._fg = fg;
}
// setColor(): called from the fore/back color selection dialog event handler
// to set/reset the fore/background color.
function setColor(name, data,type)
{
document.getElementById('showcolor').color.hidePicker();
color.style.display = 'none';
checkRange();
if (!data) {
removeFormat(document.selection.createRange(),type);
} else {
document.execCommand(type, false, data);
}
setState(btnText, false);
setState(btnFill, false);
doc.focus();
}
function checkRange()
{
RichEditor.selectedImage = null;
if (!RichEditor.txtView) return; // Disabled in View Source mode
doc.focus();
if (document.selection.type == "None") {
document.selection.createRange();
}
var r = document.selection.createRange();
DBG(1, 'RANGE Bounding('
+ 'top='+r.boundingHeight
+ ', left='+r.boundingHeight
+ ', width='+r.boundingWidth
+ ', height='+r.boundingHeight + ')'
+ ', Offset('
+ 'top='+r.offsetTop
+ ', left='+r.offsetLeft + ')'
+ ', Text=(' + r.text + ')'
+ ', HTML=(' + r.htmlText + ')'
);
}
ประมานว่า กดแล้ว จะเรียก colorchooser.html ขึ้นมาใหเลือกสีอะคับ
ผมเอาทุกอย่างที่เกี่ยวข้องใส่ลงไปใน hosting หมดแล้วนะครับ แต่ มันไม่ขึ้น พอ กด เป็น รูป กากะบาท ตรงหัวมุมอะคับ
Tag : HTML/CSS, JavaScript
|
|
|
|
|
|
Date :
2012-05-08 12:22:48 |
By :
Maxkykung |
View :
1497 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-05-08 12:29:57 |
By :
Maxkykung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|