我有一个运行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));
答案 0 :(得分:1)
在将字段数据发送到服务器时,浏览器窗口中的焦点并不重要。您应该在问题中更具体,也许可以发布代码。只需使用其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>