Đang chuẩn bị liên kết để tải về tài liệu:
PHP and script.aculo.us Web 2.0 Application Interfaces- P5

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

PHP and script.aculo.us Web 2.0 Application Interfaces- P5: script.aculo.us là một thư viện JavaScript cung cấp các hiệu ứng thị giác năng động, điều khiển giao diện người dùng, và các tính năng mạnh mẽ AJAX. Đó là những gì phụ-client PHP là phía máy chủ - mạnh mẽ, đơn giản, vui vẻ hoàn tất, và trên tất cả, PHẢI một! Theo các nhà phát triển, chúng tôi tất cả ước mơ xây dựng các ứng dụng mà người sử dụng ngay lập tức có thể rơi vào tình yêu với và nhận được hiệu quả. Đơn giản và các. | Chapter 6 Let s go straight into making an in-place editing module. We are not going to write the module from scratch but we will be extending the above example. In the story so far we have added a simple div element to the page initiated the inPlaceEditor constructor and added a few options to it. We have clubbed together the above pieces of code and the complete code is given here html head title In-Place Editing Example title script type text javascript src src lib prototype.js script script type text javascript src src src scriptaculous.js script script type text javascript src src src effects.js script script type text javascript src src src controls.js script style Body color black myDiv background-color BCE6D6 width 400px height 30px text-align center style script window.onload function new Ajax.InPlaceEditor myDiv URL okText Update cancelText Cancel highlightColor E2F1B1 clickToEditText Click me to edit loadingText Loading. savingText Saving. script body div id myDiv 109 In-place Editing using script.aculo.us First move the mouse over me and then click on ME div body html Let s look closely into the constructor definition. new Ajax.InPlaceEditor myDiv URL okText Update cancelText Cancel highlightColor E2F1B1 clickToEditText Click me to edit loadingText Loading. savingText Saving. Here we have given a proxy url in the option. We now need to create a script at the server side to handle the request sent through this constructor. Let s name it readValue.php. php value _REQUEST value echo value That s it It takes just these two lines to read the value. This is because by default it uses request to send the value. We can also overwrite it by passing our own ajaxOptions. We can also replace _request with _post and it will still work. Try it out to believe me. Just replace the url with readValue.php. The new definition of the constructor now looks like this new Ajax.InPlaceEditor myDiv readValue.php okText Update cancelText Cancel highlightColor E2F1B1 .