English 中文(简体)
Zend 框架 Jquery 装载有一些奇异的行为
原标题:Zend Framework Jquery loading has some odd behaviour

我用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>
最佳回答

尝试明确允许

$this->jQuery()->enable();

并在 _initViewHelpers 中将此设置在最后一行 。

Zend_Controller_Action_HelperBroker::addHelper($viewRenderer);  
问题回答

暂无回答




相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签