十一岁的加重songxing10000…… ------ 回到博主首页

网页自动填充表单

 

navigationItem.rightBarButtonItem = UIBarButtonItem(title: "自动填充", style: UIBarButtonItemStyle.Plain, target: self, action: "autoFill")
/// 自动填充用户信息
    @objc private func autoFill() {
        let js = "document.getElementById('userId').value = '你的用户名';" +
            "document.getElementById('passwd').value = '你的密码';"
        
        // 执行 js 脚本
        webView.stringByEvaluatingJavaScriptFromString(js)
    }

 

posted @ 2015-09-20 19:53  songxing10000  阅读(1504)  评论(0编辑  收藏  举报