有一个类型为text
的HTML元素,其名称为fiche_tache_ref。在页面文件夹外的javascript
文件(.js)内,我想根据所选列表框的值设置其值:
function changerNatureRefTache(nature_tache_id) { // nature_tache_id is from a listbox
var http_ajax = $('#http_ajax').val();
var html = $.ajax({
data: "nature_tache_id="+nature_tache_id ,
type: "POST",
url: http_ajax+"referentiel/AjaxTacheChangerNatureTache.php" ,
async: false
}).responseText;
// here I want to set the value of the field
}
AjaxTacheChangerNatureTache.php的代码是:
<?php
if (isset($_POST['nature_tache_id'])) {
define("ROOT_PATH", "../../");
require_once ROOT_PATH . 'config.inc.php';
require_once RP_MODELS . 'nature_tache.class.php';
$db = new DbConn();
$obj = new nature_tache($db->getInstance());
$ret = $obj->recupererNatureTache($_POST['nature_tache_id']);
$code = $ret['nat_code'];
echo $code;
}
?>
那么如何使用JQuery
来设置字段的值?
答案 0 :(得分:4)
使用val()
功能
$('#idofinput').val("text you want in the field");
由于您使用的是名称,因此可以执行以下操作
$('input[name=fiche_tache_ref]').val("text you want in the field");
由于名称不一定是唯一的,因此请谨慎使用名称作为选择器。我通常会建议使用id。
答案 1 :(得分:2)
我不能正确使用你,但是这样的东西用于在jquery中设置input元素的值: -
$("#elementid").val("myvalue");
答案 2 :(得分:1)
答案 3 :(得分:0)
你会对这个问题得到很多相同的答案,因为这在jquery文档中是一种低调的结果。
$("selector").val("new value");
但我给你的一个提示将使你的php更清洁,而不是像这样定义一个根路径:
define("ROOT_PATH", "../../");
您可以使用以下代码在.htaccess文件中设置包含路径:
php_value include_path ".:/path/to/your/application"
然后您可以要求相对于该路径的文件(即require_once('config.inc.php')
,而不是您基本上做的事情,即require_once('../../config.inc.php')
。
.htaccess文件应该存在于保存应用程序的主目录中。