|
|
|
จากบทความนี้ อยากประยุกให้ กำสามาถใช้กับ input type number ได้ไหมครับ |
|
|
|
|
|
|
|
Code (PHP)
<input type=text name=budget >
<input type=number name=used min=1 max='10000'
onfocus="this.setAttrbute('max', document.formname.budget.value)">
|
|
|
|
|
Date :
2016-02-12 02:07:13 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
//*** Column Budget ***//
newCell = newRow.insertCell(5);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" SIZE=\"30\" NAME=\"txtBudget_" + intLine + "\" ID=\"txtBudget_" + intLine + "\" VALUE=\"\"></center>";
//*** Column Used ***//
newCell = newRow.insertCell(6);
newCell.id = newCell.uniqueID;
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"NUMBER\" SIZE=\"30\" min=\"1\" onfocus=\"this.setAttrbute('max', document.frmMain.txtBudget_" + intLine + "\".value)\" NAME=\"txtUsed_" + intLine + "\" ID=\"txtUsed_" + intLine + "\" VALUE=\"\"></center>";
แบบนี้ไหมครับ แต่มันก็ยังไมไ่ด้ - -"
|
|
|
|
|
Date :
2016-02-12 17:24:42 |
By :
makdonal |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยหน่อยนะครับ ไหว้ละ T^T
|
|
|
|
|
Date :
2016-02-12 17:44:24 |
By :
makdonal |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
function set_max( obj, intLine ){
var mx = parseInt( '0' + document.getElementById('txtBudget_'+intLine).value);
if( mx==0) mx = 10000; // กำหนดค่า default
obj.setAttribute('max', mx);
}
newCell.innerHTML = '<center><input type=number size=30 min=1 data-lineNo='+intLine+
' onfocus="set_max(this)" name=txtUsed_' + intLine + ' id=txtUsed_'+intLine+' ></center>';
|
|
|
|
|
Date :
2016-02-12 19:24:48 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ผมก็หาวิธีตั้งนาน เลย เขียน function จัดการดักมันสะ ง่ายดี ขอบคุณพี่มากๆครับ ได้แนวคิดเพิ่มม
|
|
|
|
|
Date :
2016-02-12 19:46:27 |
By :
makdonal |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2016-02-13 21:46:57 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|