hhheng wrote:
I got 5 data which is 326195,A00148,A004\592.
No idea what you are talking about.
hhheng wrote:
May i know wat the meaning for the "" in javascript?
The backslash '\' is normally used to write a String on multiple lines:
Code:
alert('this will work');
Code:
alert('this will
NOT work');
Code:
alert('this however \
will work again');
cheers
- leonard