1、新建壹個html文件,命名為test.html。
2、在test.html文件內,在p標簽內,使用input標簽創建壹個字符串輸入框。
3、在test.html文件內,設置input元素的id為myinput,主要用於下面通過該id獲得input對象。
4、在test.html文件內,使用button標簽創建壹個按鈕。
5、在test.html文件中,給button按鈕綁定onclick點擊事件,當按鈕被點擊時,執行getlast()函數。
6、在js標簽中,創建getlast()函數,在函數內,通過getElementById()方法獲得input對象。
7、在瀏覽器打開test.html文件,點擊按鈕,查看結果。