aardio 文档

aardio 范例: jQuery 测试

jQuery 快速入门

//jQuery import win.ui; /*DSG{{*/ var winform = win.form(text="jQuery 测试";right=461;bottom=289;scroll=1) winform.add() /*}}*/

import web.sciter; var wb = web.sciter(winform)

import process; wb.onHyperlinkClick = function (scTarget,scOwner) { process.openUrl(scTarget.href); }

/* jQuery 快速入门 https://quickref.me/jquery https://learnxinyminutes.com/docs/zh-cn/jquery-cn/ */

wb.html = /** <!doctype html>


<script>
$("button#btn").click(
    function(){
        $("div#idTest2").html("<a href='https://api.jquery.com/' target='_blank'>打开 jQuery 文档</a>")
        $("div#idTest2").fadeIn( "slow" );
    }
)
</script>

**/

winform.show(); win.loopMessage();

Markdown 格式