我在页眉中调用 JQueryUI.js,然后使用 AJAX 加载内容。
Jquery拖放工作一次然后退出工作。如果我使用 JqueryUI.js 加载每个 AJAX 内容,它就可以工作,但这非常慢。这是在 YII 框架中
所以整个事情看起来像:
页面.php:
$cs->registerScriptFile($baseUrl . '/js/jquery.ui.js');
$cs->registerScriptFile($baseUrl . '/js/product.js');
产品.js:
// need to namespace this to get access to jquery.ui.js sortable function
(function($) {
SORTABLE = {
mySortable: function(inputId) {
$('#sortable-list-left').sortable();
$('#sortable-list-right').sortable();
}
};
}(jQuery));
$(document)
.ready(function() {
function loadRecord(id, sku) {
$.ajax({
data: "id=" + id + "&sku=" + sku + "&project_id=" + urlParam("project"),
url: "/product/ajaxGetRecord",
type: "POST",
success: function(response) {
// process JSON response
var obj = jQuery.parseJSON(response);
// update the html with the new info
$("#productForm")
.html(obj.form);
(function() {
SORTABLE.mySortable(urlParam("project"));
})();
}
});
});
_pagePartial.php:
<div id="productForm">
// dynamic content filled in here
</div>
这种命名空间策略适用于我所有的其他 JS,但不适用于 Jquery.ui.js ......它应用了 sortable 方法,我可以拖放一次,但它不再有效。
不理想的工作选项是:
_pagePartial.php:
// called every single ajax update ... ugh!
$cs->registerScriptFile($baseUrl . '/js/jquery.ui.js');
$('#sortable-list-left').sortable();
$('#sortable-list-right').sortable();