使用 onblur 发送一个变量
Send a variable with onblur
我有一个字段 运行 一个 onblur 函数,需要发送该字段的值,但真的不知道有人可以如何帮助我?
$condicion .= $nombremetadato['campoDocumentoPropiedad'].' = ? and ';
$condicion = substr($condicion, 0, strlen($condicion)-4);
$cond = ''; //This is the value I want Arrives from The Other Form
$consulta = DB::Select(DB::raw('SELECT '.$campos.' from '.$nombremetadato['tablaDocumento'].' where '.$condicion.''), array($cond));
在将现场数据发送到服务器时,浏览器中的焦点 window 并不是很重要。您的问题应该更具体,也许 post 代码。无论如何,只需使用其 id/name 属性获取字段的值即可。
如果您需要在字段模糊时进行一些特殊处理,请使用类似:
<input type="text" onblur="myFunction(this)" value="Value here!!">
挂接到 Javascript 函数,例如:
<script>
myFunction(callerObj){
var val = callerObj.value;
// do something with val before submitting for processing by server
}
</script>
我有一个字段 运行 一个 onblur 函数,需要发送该字段的值,但真的不知道有人可以如何帮助我?
$condicion .= $nombremetadato['campoDocumentoPropiedad'].' = ? and ';
$condicion = substr($condicion, 0, strlen($condicion)-4);
$cond = ''; //This is the value I want Arrives from The Other Form
$consulta = DB::Select(DB::raw('SELECT '.$campos.' from '.$nombremetadato['tablaDocumento'].' where '.$condicion.''), array($cond));
在将现场数据发送到服务器时,浏览器中的焦点 window 并不是很重要。您的问题应该更具体,也许 post 代码。无论如何,只需使用其 id/name 属性获取字段的值即可。
如果您需要在字段模糊时进行一些特殊处理,请使用类似:
<input type="text" onblur="myFunction(this)" value="Value here!!">
挂接到 Javascript 函数,例如:
<script>
myFunction(callerObj){
var val = callerObj.value;
// do something with val before submitting for processing by server
}
</script>