如何将HTML转换为字符串.
HTML格式的文件如:
Add a contact to the device. <br><br>
<b>e.g.</b><br>
var myContact = new AddresBookItem();<br>
myContact.setAttributeValue("mobilePhone", "555555555555");<br>
Widget.PIM.addAddressBookItem(myContact);<br><br>
<b>Parameters:</b> <br>
<i>contact</i> - A Contact object to be added <br>
" "
转换为字符串:
Add a contact to the device.
e.g(黑体)
var myContact = new AddresBookItem();
myContact.setAttributeValue("mobilePhone",
"555555555555");
Widget.PIM.addAddressBookItem(myContact);
Parameters:(黑体)
contact - A Contact object to be added ;
在线等...