|
|
|
อยากทราบวิธีแทรกโค๊ด javascript ใน คำสั้ง input ของ php ครับ |
|
|
|
|
|
|
|
ลองแบบนี้ดูจิ
Code (PHP)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
var gibberish=["Hi", "Hello", "Yo"];
var data = "";
function filltext(words){
for (var i=0; i<words; i++)
data += gibberish[Math.floor(Math.random()*3)]+" ";
return data;
}
</script>
</head>
<body>
<form>
<input name="name" type="text" id="resultBox" value="" size="100" />
</form>
<script type="text/javascript">
document.getElementById("resultBox").value = filltext(1);
</script>
</body>
</html>
|
|
|
|
|
Date :
2014-03-24 03:56:19 |
By :
marknemesis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ ใช้ได้แล้ว ^_^
|
|
|
|
|
Date :
2014-03-24 09:41:17 |
By :
pxmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แต่ทุกครั้งที่สุ่มข้อความเสร็จ ในช่อง input อะครับจะมีเว้นวรรคเกินขึ้นมา แก้ยังไงหลอครับ
|
|
|
|
|
Date :
2014-03-24 10:45:25 |
By :
pxmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|