AS3 Textfield href & 符号问题
我有一个带有 htmlText 标签的文本字段。一切正常,直到 href 在 url 中包含 & 符号(例如:“example.aspx?param1=x¶m2=y”),然后 flash 停止填充文本字段。
有什么解决办法吗?
I have a textfield with an tag in htmlText. Everything works fine until the href contains an ampersand in the url (example: "example.aspx?param1=x¶m2=y"), then flash stop filling the textField.
Any solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你尝试过吗:
?
Have you tried :
?
我认为您的代码中缺少一些内容,这是一个可行的示例
There is something missing in your code I think , here is a workable example
可能有点晚了,但就我而言,如果您用
%26
(url 编码版本)替换 & 符号,它就会显示得很好。Might be a little late, but in my case, if you replaced the ampersand with
%26
(The url encoded version), it showed up just fine.