我用Jquery和Ajax在 Zend Framed 应用程序中构建了一个动态格式,但我遇到了一个问题。 出于某种奇怪的原因, Jquery不会在我的页面上工作, 除非我添加一个标准 Jquery 对象, 如日期 Picker 。
每次我添加日期选择器时,我的代码完全正常, 当我删除日期选择器时, 它给出了一个错误, 即 $( document).redi( 函数()
) 变量未定义。 考虑到 jquery 没有被装入, 因此该变量对浏览器没有意义, 这本身是正确的 。
我有图书馆、靴子套件和$this-gt;Jquery ();
都设置得当, 否则日期拾取者就会不工作, 当日期拾取者在场时, 其它代码工作完全显示它都设置得当 。
还有谁遇到过Jquery没有适当装货的问题吗?
我的密码在靴子里:
protected function _initViewHelpers()
{
$view = new Zend_View();
$view->addHelperPath( ZendX/JQuery/View/Helper/ , ZendX_JQuery_View_Helper );
$viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper( ViewRenderer );
$viewRenderer->setView($view);
和我的代码 在布局:
<?php
echo $this->jQuery();
echo $this->layout()->content;
?>
我的应用程序. ini 也有 autoloaderNamespaces[] = "ZendX"
线条
以下是在我看来的拼写代码:
<p>All fields are required.</p>
<?= $this->form; ?>
<script type="text/javascript">
$(document).ready(function() {
$("#addElement").click(
function() {
ajaxAddField();
}
);
$("#removeElement").click(
function() {
removeField();
}
);
}
);
// Get value of id - integer appended to dynamic form field names and ids
var id = $("#id").val();
// Retrieve new element s html from controller
function ajaxAddField() {
$.ajax(
{
type: "POST",
url: "<?=$this->url(array( action => newfield , format => html ));?>",
data: "id=" + id,
success: function(newElement) {
// Insert new element before the Add button
$("#addElement-label").before(newElement);
// Increment and store id
$("#id").val(++id);
}
}
);
}
function removeField() {
// Get the last used id
var lastId = $("#id").val() - 1;
// Build the attribute search string. This will match the last added dt and dd elements.
// Specifically, it matches any element where the id begins with newName<int>- .
searchString = *[id^=newName + lastId + -] ;
// Remove the elements that match the search string.
$(searchString).remove()
// Decrement and store id
$("#id").val(--id);
}
</script>