📌  相关文章
📜  script.aculo.us InPlaceEditor loadTextURL 选项

📅  最后修改于: 2022-05-13 01:56:26.111000             🧑  作者: Mango

script.aculo.us InPlaceEditor loadTextURL 选项

script.aculo.us 库是一个跨浏览器库,旨在改进网站的用户界面。 Ajax.InPlaceEditor 用于使元素可编辑,从而允许用户编辑页面上的内容并将更改提交到服务器。

InPlaceEditor loadTextURL选项用于指定服务器URL,当可编辑元素与之交互时,将从该服务器加载文本。当服务器上的文本被格式化并需要加载到可编辑元素中时,这很有用。

句法:

{ loadTextURL: URL }

值:此选项具有如上所述和如下所述的单个值:

  • URL:这是一个字符串,它指定用于加载文本的 URL。默认值为null

下面的示例说明了此选项的使用。

示例:该示例演示了 InPlaceEditor loadTextURL 选项。

HTML


  

    
  
    
  
    

  

    

        GeeksforGeeks     

       

InPlaceEditor loadTextURL Option

          

        The "loadTextURL" option is used to          specify the URL of the server from          where the text would be loaded when          the editable element is interacted          upon.     

       
        Click this element to edit it!     
  


PHP


PHP


文件就地。需要PHP来模拟将数据保存到服务器。

PHP


文件加载文本需要PHP来模拟加载文本的服务器。

PHP


输出: