Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
感谢您提前阅读。
我正在制作一个虚拟的移动屏幕,用户应该在文本框中输入一个 URL,并且该 URL 应该加载到一个移动窗口中。我做了所有的设计。但是有人可以请建议如何做到这一点。
您可以通过其text属性获取文本框内容。如果您使用的是名为myTextBox的普通文本输入字段:
text
var myUrl:String = myTextBox.text.trim(); // Use trim to strip white spaces!! getURL(myUrl, "_blank");