|
|
|
ช่วยด้วยค่ะ เกี่ยวกับการนำ javascript มาจากเว็บมาใช้ในงาน |
|
|
|
|
|
|
|
โค้ดตัวอย่างจากเว็บ ที่รันได้
Code (JavaScript)
<script type='text/javascript'>
function insert(el,ins) {
if (el.setSelectionRange){
el.value =el.value.substring(0,el.selectionStart) + ins +'\n'+ el.value.substring(el.selectionStart,el.selectionEnd) + el.value.substring(el.selectionEnd,el.value.length);
}
else if (document.selection && document.selection.createRange) {
el.focus();
var range = document.selection.createRange();
range.text =ins + range.text;
}
}
</script>
<form>
<input type='text' name='txt1' id='txt1'>
<input type='button' value='my freind' onclick='insert(this.form.ta,txt1.value)' >
<br />
<textarea rows='7' cols='30' name='ta'>
</textarea>
</form>
แต่นำมาใช้จริงรันไม่ได้ค่ะ หนูทำผิดตรงไหนบ้างอ่ะค่ะช่วยด้วยค่ะ
function manage_Broadc(){
$content=faceMain_up();
$content .="<!--BODY -->
<div class=\"Boxbody\">
<div class=\"Boxbody\" id=\"Boxbody-head\"> ";
if($_REQUEST['menu'] == ''){
$content.="Welcome To ";
}else{
$content.=$_REQUEST['menu'];
}
$content .="</div><br><br><br>";//head body
//start
$content .="<script type='text/javascript'>
function insert(el,ins) {
if (el.setSelectionRange){
el.value =el.value.substring(0,el.selectionStart) + ins +'\n'+ el.value.substring(el.selectionStart,el.selectionEnd) + el.value.substring(el.selectionEnd,el.value.length);
}
else if (document.selection && document.selection.createRange) {
el.focus();
var range = document.selection.createRange();
range.text =ins + range.text;
}
}
</script>";
$content .="<form>
<input type='text' name='txt1' id='txt1'>
<input type='button' value='my freind' onclick='insert(this.form.ta,txt1.value)' >
<br />
<textarea rows='7' cols='30' name='ta'>
</textarea>
</form>";
$content.="</div>"; // end div body
$content.=faceMain_down();
return $content;
}
Tag : PHP
|
|
|
|
|
|
Date :
2013-05-13 14:27:19 |
By :
กานดา |
View :
710 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ เปลี่ยนจาก " เป็น ' และ เปลี่ยนจาก ' เป็น"
Code (PHP)
$content .='<script type="text/javascript">
function insert(el,ins) {
if (el.setSelectionRange){
el.value =el.value.substring(0,el.selectionStart) + ins +"\n"+ el.value.substring(el.selectionStart,el.selectionEnd) + el.value.substring(el.selectionEnd,el.value.length);
}
else if (document.selection && document.selection.createRange) {
el.focus();
var range = document.selection.createRange();
range.text =ins + range.text;
}
}
</script>';
ถามเองตอบเองเนอะ 55
|
|
|
|
|
Date :
2013-05-13 14:31:37 |
By :
กานดา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-05-14 06:30:27 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|