2024年6月26日 星期三

[筆記]幾個建議的修正polyfill、bootcss、bootcdn、staticfile

參考:

收到google通知:Action Required: Security issue affecting your landing pages
搜尋並查詢一下相關建議:
 - `polyfill.io`
   - `bootcss.com`
   - `bootcdn.net`
   - `staticfile.org`
有引用這些網站相關的javscript 等檔案,建議移除或置換。

2024年6月18日 星期二

[筆記]javascript剪貼簿

https://jsfiddle.net/boc58L0j/3/
https://jsfiddle.net/boc58L0j/9/

<table>

<tr>

  <td>文字一</td>

  <td><input type="button" value="複製" onclick="copy('文字一');"/>

  </td>

</tr>

<tr>

  <td>文字二</td>

  <td><input type="button" value="複製" onclick="copy('文字二');"/>

  </td>

</tr>

</table>

function copy(strInpt) {

  //新增

    var textArea = document.createElement("textarea");

    textArea.value = strInpt;

    document.body.appendChild(textArea);

    textArea.select();

    document.execCommand("Copy");

    textArea.remove();  

    // Alert the copied text

    alert("Copied the text: " + strInpt);

}

function copy(strInpt) {

  //新增

    var copyText = document.createElement("textarea");

    copyText.value = strInpt;

    document.body.appendChild(copyText);

    copyText.select();    

  //copyText.setSelectionRange(0, 99999); // For mobile devices

    // Copy the text inside the text field

  navigator.clipboard.writeText(copyText.value);

    copyText.remove();  

    // Alert the copied text

    alert("Copied the text: " + strInpt);

}

2024年6月9日 星期日

[筆記]Teams建立Chanel取得通知鏈結

  • 2024.06.09版本。
  • 管理的位置藏的很深,這邊作個小筆記。


編輯:點擊後channel右邊側欄會出現【Manage Channel】。


Connectors>找到Edit

搜尋Incomming Webhook > Configure


新增一組Webhook通知,輸入名稱,設定圖示後確定。


Create完成後,畫面會顯示webhook link。



若有需要新增第二組webhook或是管理,請選擇Configured,會顯示之前建立的資料。